/* =============================================
   NETWINT SOFTWARE SOLUTIONS — PREMIUM DARK UI
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.35);
    --accent: #22d3ee;
    --accent-glow: rgba(34, 211, 238, 0.3);
    --green: #10b981;
    --green-glow: rgba(16, 185, 129, 0.35);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    --bg-900: #070b14;
    --bg-800: #0d1424;
    --bg-700: #111827;
    --bg-600: #1a2235;
    --bg-500: #1e293b;
    --bg-400: #243044;

    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.07);

    --text-100: #f0f4ff;
    --text-200: #c7d2fe;
    --text-300: #94a3b8;
    --text-400: #64748b;

    --border: rgba(255,255,255,0.07);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s ease;

    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);

    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
}

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-900);
    color: var(--text-100);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   ANIMATED BACKGROUND
   ============================================= */
.bg-animated {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
    opacity: 0.35;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.6), transparent 70%);
    top: -200px; left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(34,211,238,0.5), transparent 70%);
    top: 40%; right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.4), transparent 70%);
    bottom: -100px; left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.97); }
}

.grid-overlay {
    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;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    z-index: 1;
}

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

.logo img {
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--text-100), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-300);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover { color: var(--text-100); }
.nav-link:hover::after { transform: scaleX(1); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-100);
    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); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(7, 11, 20, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 20px 24px;
    gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-200);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.whatsapp-link {
    background: var(--glass);
    color: var(--text-100);
}

.mobile-nav-link.whatsapp-link { color: var(--whatsapp); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-glow {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-ghost {
    background: var(--glass);
    color: var(--text-200);
    border: 1px solid var(--glass-border);
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-ghost:hover {
    background: var(--glass-hover);
    color: var(--text-100);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}

.btn-buy-license {
    width: 100%;
    background: linear-gradient(135deg, #4f46e5, #6366f1, #818cf8);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 30px rgba(99,102,241,0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-buy-license::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15));
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-buy-license:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99,102,241,0.55);
}

.btn-buy-license:hover::after { opacity: 1; }

.shopflow-buy {
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
    box-shadow: 0 8px 30px rgba(16,185,129,0.4);
}

.shopflow-buy:hover {
    box-shadow: 0 12px 40px rgba(16,185,129,0.55);
}

.btn-wa-secondary {
    width: 100%;
    background: rgba(37,211,102,0.1);
    color: var(--whatsapp);
    border: 1px solid rgba(37,211,102,0.25);
    padding: 13px 24px;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-wa-secondary:hover {
    background: rgba(37,211,102,0.18);
    transform: translateY(-2px);
}

.btn-download {
    width: 100%;
    background: var(--glass);
    color: var(--text-200);
    border: 1px solid var(--glass-border);
    padding: 13px 24px;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
}

.btn-download:hover {
    background: var(--glass-hover);
    color: var(--text-100);
    transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.07;
    margin-bottom: 28px;
    color: var(--text-100);
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    background-size: 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-300);
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 24px 48px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 40px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-100);
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item > span:not(.stat-number):not(.stat-label) {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-400);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-dot {
    width: 28px; height: 44px;
    border: 2px solid var(--glass-border);
    border-radius: 14px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 10px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
    position: relative;
    z-index: 1;
    padding: 24px 0;
    background: rgba(99,102,241,0.06);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.features-ticker {
    display: flex;
    gap: 60px;
    animation: tickerScroll 25s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-300);
    white-space: nowrap;
}

.ticker-item i {
    color: var(--primary-light);
    font-size: 0.85rem;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    color: var(--primary-light);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-100);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-300);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px 36px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99,102,241,0.3);
    box-shadow: var(--shadow-card), 0 0 60px rgba(99,102,241,0.1);
}

.shopflow-card:hover {
    border-color: rgba(16,185,129,0.3);
    box-shadow: var(--shadow-card), 0 0 60px rgba(16,185,129,0.1);
}

.card-glow {
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    pointer-events: none;
    transition: var(--transition);
}

.product-card:hover .card-glow { opacity: 0.3; }

.glow-blue { background: var(--primary); }
.glow-green { background: var(--green); }

.product-badge {
    position: absolute;
    top: 20px; right: 20px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.cloud-badge {
    background: rgba(99,102,241,0.15);
    color: var(--primary-light);
    border: 1px solid rgba(99,102,241,0.25);
}

.offline-badge {
    background: rgba(16,185,129,0.12);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.2);
}

.hot-badge {
    position: absolute;
    top: 52px; right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fb923c;
}

.pulse-animation {
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.product-icon-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-top: 8px;
}

.product-logo {
    max-height: 90px;
    max-width: 75%;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(99,102,241,0.3));
    transition: var(--transition);
}

.shopflow-card .product-logo {
    filter: drop-shadow(0 4px 20px rgba(16,185,129,0.25));
}

.product-card:hover .product-logo {
    transform: scale(1.07) translateY(-2px);
}

.product-name {
    font-size: 1.8rem;
    color: var(--text-100);
    margin-bottom: 6px;
}

.product-tagline {
    font-size: 0.88rem;
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.shopflow-card .product-tagline { color: #34d399; }

.product-desc {
    font-size: 0.97rem;
    color: var(--text-300);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Feature List */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-200);
}

.feature-list li i {
    color: var(--primary-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.shopflow-card .feature-list li i { color: #34d399; }

/* Price Display */
.price-display {
    background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.12);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: center;
}

.shopflow-card .price-display {
    background: rgba(16,185,129,0.06);
    border-color: rgba(16,185,129,0.12);
}

.price-label {
    font-size: 0.78rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 1.1rem;
    color: var(--text-300);
    font-weight: 700;
}

.price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-100);
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-400);
}

/* Card Actions */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: rgba(255,255,255,0.015);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.2);
    background: var(--glass-hover);
}

.why-icon {
    width: 56px; height: 56px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(99,102,241,0.2);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.15rem;
    color: var(--text-100);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--text-300);
    line-height: 1.65;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.contact-card {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.contact-glow {
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    z-index: 1;
    padding: 64px 48px;
    text-align: center;
}

.contact-icon-main {
    width: 72px; height: 72px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
    margin: 0 auto 28px;
}

.contact-card h2 {
    font-size: 2.2rem;
    color: var(--text-100);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.contact-card > .contact-inner > p {
    color: var(--text-300);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 18px 28px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    min-width: 200px;
}

.contact-item:hover {
    background: var(--glass-hover);
    transform: translateY(-4px);
    border-color: rgba(99,102,241,0.25);
}

.whatsapp-item {
    border-color: rgba(37,211,102,0.2);
    background: rgba(37,211,102,0.05);
}

.whatsapp-item:hover {
    background: rgba(37,211,102,0.1);
    border-color: rgba(37,211,102,0.35);
}

.contact-item-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: rgba(99,102,241,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.whatsapp-item .contact-item-icon {
    background: rgba(37,211,102,0.15);
    color: var(--whatsapp);
}

.contact-item-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-item-label {
    font-size: 0.75rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.contact-item-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-100);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    position: relative;
    z-index: 1;
    background: rgba(7,11,20,0.9);
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-100);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-400);
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-400);
    transition: var(--transition-fast);
}

.footer-links a:hover { color: var(--text-200); }

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-400);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   PAYMENT MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #0d1424;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 0;
    max-width: 520px;
    width: 100%;
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.97);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 0 1px var(--glass-border);
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(239,68,68,0.15);
    border-color: rgba(239,68,68,0.3);
    color: #ef4444;
}

.modal-step {
    padding: 40px 36px;
}

.hidden { display: none; }

/* Modal Header */
.modal-header { text-align: center; margin-bottom: 28px; }

.modal-icon {
    width: 64px; height: 64px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    margin: 0 auto 20px;
}

.modal-title {
    font-size: 1.7rem;
    color: var(--text-100);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-400);
}

/* Order Summary */
.order-summary-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 16px;
}

.order-product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-100);
    margin-bottom: 4px;
}

.order-product-type {
    font-size: 0.82rem;
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.order-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.93rem;
    color: var(--text-300);
    padding: 8px 0;
}

.order-usd-row { color: var(--text-400); font-size: 0.85rem; }
.order-usd-amount { color: var(--accent); font-weight: 700; }

.order-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 8px 0;
}

.order-total {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-100);
    border-top: 1px solid var(--glass-border);
    padding-top: 14px;
    margin-top: 4px;
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.secure-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-400);
}

.secure-badges i { color: var(--primary-light); }

/* Success State */
.success-animation {
    position: relative;
    width: 100px; height: 100px;
    margin: 0 auto 28px;
}

.success-circle {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    margin: 10px auto;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(16,185,129,0.4);
    animation: ringExpand 2s ease-out infinite;
}

.ring-1 { width: 90px; height: 90px; animation-delay: 0s; }
.ring-2 { width: 110px; height: 110px; animation-delay: 0.4s; }
.ring-3 { width: 130px; height: 130px; animation-delay: 0.8s; }

@keyframes ringExpand {
    0% { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.success-title {
    font-size: 1.8rem;
    color: var(--text-100);
    text-align: center;
    margin-bottom: 12px;
}

.success-subtitle {
    font-size: 0.93rem;
    color: var(--text-300);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.6;
}

.payment-id-box {
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.18);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: center;
    margin-bottom: 20px;
}

.payment-id-label {
    font-size: 0.78rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.payment-id-value {
    font-family: 'Outfit', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #34d399;
    word-break: break-all;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    color: #34d399;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover { background: rgba(16,185,129,0.18); }
.copy-btn.copied { background: rgba(16,185,129,0.25); color: white; }

.success-product-info {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-400);
    margin-bottom: 24px;
}

.success-product-info strong { color: var(--text-200); }

.next-steps {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.next-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    flex: 1;
    min-width: 130px;
}

.step-num {
    width: 28px; height: 28px;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-light);
    flex-shrink: 0;
}

.next-step-item p {
    font-size: 0.82rem;
    color: var(--text-300);
}

.btn-whatsapp-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 16px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    transition: var(--transition);
}

.btn-whatsapp-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.45);
}

.btn-ghost-modal {
    display: block;
    width: 100%;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-400);
    padding: 12px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.btn-ghost-modal:hover {
    background: var(--glass);
    color: var(--text-300);
}

/* Error State */
.error-icon {
    text-align: center;
    font-size: 3.5rem;
    color: #ef4444;
    margin-bottom: 20px;
    animation: shakingIcon 0.5s ease;
}

@keyframes shakingIcon {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.error-title {
    text-align: center;
    font-size: 1.7rem;
    color: var(--text-100);
    margin-bottom: 12px;
}

.error-message {
    text-align: center;
    color: var(--text-300);
    margin-bottom: 28px;
}

/* Scrollbar Styling */
.modal-box::-webkit-scrollbar { width: 6px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 3px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2.4rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-glow, .btn-ghost { width: 100%; max-width: 320px; }
    .hero-stats { padding: 20px 24px; gap: 8px; }
    .stat-item { padding: 0 16px; }
    .stat-divider { display: none; }

    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }

    .contact-inner { padding: 40px 24px; }
    .contact-card h2 { font-size: 1.7rem; }
    .contact-methods { flex-direction: column; }
    .contact-item { min-width: unset; }

    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-logo { justify-content: center; }

    .modal-step { padding: 28px 20px; }
    .next-steps { flex-direction: column; }
    .next-step-item { min-width: unset; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 80px; height: 1px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .why-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
}



/* LKR price highlight */
.order-lkr-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #0d6efd;
}

/* Customer form */
.customer-form {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-300);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-group input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 11px 14px;
    font-size: 0.93rem;
    color: var(--text-100);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input::placeholder { color: var(--text-400); }

.form-group input:focus {
    border-color: rgba(13,110,253,0.5);
    background: rgba(13,110,253,0.05);
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}

.form-group input.input-error {
    border-color: rgba(239,68,68,0.5);
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

/* PayHere modal icon */
.payhere-icon {
    background: rgba(13,110,253,0.12) !important;
    border-color: rgba(13,110,253,0.2) !important;
}

/* PayHere loading state */
.payhere-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    gap: 16px;
}

.payhere-loading .spinner {
    width: 48px; height: 48px;
    border: 3px solid rgba(13,110,253,0.15);
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payhere-loading p {
    color: var(--text-300);
    font-size: 0.93rem;
}

@media (max-width: 520px) {
    .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   CARD LOGOS — Visa / Mastercard / Amex
   ============================================= */
.card-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.card-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s;
}

.card-logo:hover { transform: scale(1.08); }

/* VISA */
.card-logo.visa {
    background: #1a1f71;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1px;
    padding: 0 12px;
}

/* MASTERCARD — two overlapping circles */
.card-logo.mastercard {
    background: #252525;
    position: relative;
    padding: 0 10px;
    gap: 0;
    overflow: visible;
}

.mc-left, .mc-right {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.mc-left {
    background: #EB001B;
    margin-right: -7px;
    position: relative;
    z-index: 1;
}

.mc-right {
    background: #F79E1B;
    mix-blend-mode: normal;
}

/* AMEX */
.card-logo.amex {
    background: linear-gradient(135deg, #007BC1, #00AEEF);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.8px;
    padding: 0 8px;
}

/* + More label */
.card-logo.label {
    background: rgba(255,255,255,0.04);
    color: var(--text-400);
    font-weight: 600;
    font-size: 0.73rem;
    border: 1px solid rgba(255,255,255,0.07);
}

/* =============================================
   PAYHERE BUTTON — Text-only version (no img)
   ============================================= */
.btn-payhere {
    background: linear-gradient(135deg, #1a56db 0%, #1971c2 50%, #1c7ed6 100%);
    box-shadow: 0 8px 28px rgba(26,86,219,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 16px 24px;
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-payhere::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-payhere:hover::before { left: 150%; }

.btn-payhere:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26,86,219,0.6);
    color: white;
    text-decoration: none;
}

.btn-payhere:active { transform: translateY(0); }
