/* ============================================
   NONCE SYSTEMS - NewSite Styles
   Theme: Adaptive (Auto Light/Dark from browser)
   Accent: Indigo-Blue — works on both backgrounds
   Fully Responsive: All Devices
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Fixed accent palette (works on light and dark) */
    --accent-50: #eef2ff;
    --accent-100: #e0e7ff;
    --accent-200: #c7d2fe;
    --accent-300: #a5b4fc;
    --accent-400: #818cf8;
    --accent-500: #6366f1;
    --accent-600: #4f46e5;
    --accent-700: #4338ca;
    --accent-800: #3730a3;
    --accent-900: #312e81;
    --cyan: #06b6d4;
    --green: #10b981;
    --red: #ef4444;
    --orange: #f59e0b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Light Mode (default) */
    --bg-primary: #e4e8f2;
    --bg-secondary: #dde2ee;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    --text-primary: #1a1f36;
    --text-secondary: #3d4663;
    --text-muted: #5c6587;
    --border: #c8cfdf;
    --border-light: #d4dae8;
    --accent: #4f46e5;
    --accent-light: #6366f1;
    --accent-bg: #eef2ff;
    --glow: rgba(79, 70, 229, 0.15);
    --shadow-sm: 0 2px 4px rgba(15,23,42,0.06);
    --shadow-md: 0 4px 12px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 32px rgba(15,23,42,0.1);
    --shadow-xl: 0 20px 50px rgba(15,23,42,0.12);
    --nav-bg: rgba(255,255,255,0.88);
    --nav-border: #c8cfdf;
    --hero-bg: linear-gradient(165deg, #e4e8f2 0%, #dfe4f2 50%, #d8ddef 100%);
    --hero-text: #1a1f36;
    --hero-muted: #3d4663;
    --hero-badge-bg: rgba(79,70,229,0.1);
    --hero-badge-border: rgba(79,70,229,0.25);
    --hero-badge-text: #4338ca;
    --footer-bg: #0f172a;
    --footer-text: #94a3b8;
    --footer-heading: #ffffff;
    --footer-link: #94a3b8;
    --footer-link-hover: #a5b4fc;
}



html { scroll-behavior: smooth; }



/* Dark background elements for manual dark mode */




body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }



/* === COMMON === */
.section-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.section-title { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 16px; color: var(--text-primary); }
.section-title .muted { color: var(--text-muted); }
.section-subtitle { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; max-width: 600px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
section { position: relative; z-index: 1; }
.section-alt { background: var(--bg-secondary); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

/* Subtle section transitions */
section + section { margin-top: 0; }
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-200), transparent);
    opacity: 0.6;
}
section:first-of-type::before,
.section-alt::before,
.section-alt + section::before { display: none; }

/* Gradient fade between sections */
.section-alt::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 2;
}
.section-alt::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 2;
    display: block;
    width: 100%;
    transform: none;
    opacity: 1;
}

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; font-family: inherit; }
.btn-blue { background: var(--accent); color: #ffffff; }
.btn-blue:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: 0 12px 28px var(--glow); }
.btn-outline { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.btn-glass { background: rgba(240,242,255,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: var(--accent); border: 2px solid var(--accent-200); box-shadow: 0 4px 16px rgba(79,70,229,0.08); font-weight: 700; }
.btn-glass:hover { background: var(--accent-bg); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.15); }
.btn-sm { padding: 8px 16px; font-size: 0.78rem; border-radius: 6px; }
.btn-ghost { background: none; border: none; color: var(--accent); font-weight: 600; font-size: 0.82rem; cursor: pointer; padding: 6px 0; }
.btn-ghost:hover { text-decoration: underline; }

/* === CARDS === */
.card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px 24px; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.card:hover { border-color: var(--accent-200); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }

/* === NAV === */
nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 6px 0; background: var(--nav-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--nav-border); box-shadow: var(--shadow-sm); transition: padding 0.3s ease, box-shadow 0.3s ease; }
nav.scrolled { padding: 4px 0; box-shadow: var(--shadow-md); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img, .brand-logo { height: 44px; width: auto; object-fit: contain; transition: height 0.3s ease; }
nav.scrolled .nav-logo img, nav.scrolled .brand-logo { height: 40px; }
.brand-text { display: flex; flex-direction: column; justify-content: center; text-align: left; }
.brand-name { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.01em; line-height: 1.2; }
.brand-tagline { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; line-height: 1.2; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-btn { background: var(--accent); color: #ffffff!important; padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.82rem; transition: all 0.3s; }
.nav-btn:hover { background: var(--accent-700); box-shadow: 0 8px 20px var(--glow); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-primary); cursor: pointer; padding: 8px; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    padding-top: 28px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -7px;
    border: 7px solid transparent;
    border-bottom-color: var(--border);
}
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    border: 6px solid transparent;
    border-bottom-color: var(--bg-card);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: var(--text-secondary) !important;
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover {
    background: var(--accent-bg);
    color: var(--accent) !important;
}
.nav-dropdown-menu a i {
    font-size: 1.1rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
}
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-primary); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 16px 24px; }
.mobile-menu.active { display: flex; flex-direction: column; gap: 12px; }
.mobile-menu a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500; padding: 8px 0; }

/* === HERO === */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 130px; background: var(--hero-bg); color: var(--hero-text); overflow: hidden; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to bottom, transparent, var(--bg-primary)); z-index: 2; }
.hero h1 { color: var(--hero-text); }
.hero p { color: var(--hero-muted); }
.hero .btn-outline { color: var(--hero-text); border-color: var(--border); }
.hero .btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--hero-badge-bg); border: 1px solid var(--hero-badge-border); padding: 7px 16px; border-radius: 50px; font-size: 0.73rem; font-weight: 700; color: var(--hero-badge-text); margin-bottom: 20px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; color: var(--gray-900); }
.hero h1 .accent { background: linear-gradient(135deg, var(--accent-600), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.05rem; color: var(--hero-muted); max-width: 500px; margin-bottom: 32px; line-height: 1.7; }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual > div { max-width: 100%; }
.shield-wrap { position: relative; width: 320px; height: 320px; display: flex; align-items: center; justify-content: center; }
.shield-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(99,102,241,0.25); animation: spin 25s linear infinite; }
.shield-ring-2 { position: absolute; inset: 30px; border-radius: 50%; border: 1.5px dashed rgba(99,102,241,0.15); animation: spin 18s linear infinite reverse; }
.shield-ring-3 { position: absolute; inset: 60px; border-radius: 50%; border: 1.5px solid rgba(99,102,241,0.12); animation: spin 35s linear infinite; }
.shield-core { width: 110px; height: 110px; background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(6,182,212,0.08)); border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; color: var(--accent); box-shadow: 0 8px 32px rgba(79,70,229,0.15); animation: corePulse 4s ease-in-out infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes corePulse { 0%,100%{box-shadow:0 8px 32px rgba(37,99,235,0.1)} 50%{box-shadow:0 12px 48px rgba(37,99,235,0.18)} }
.node { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 10px rgba(59,130,246,0.4); }
.node:nth-child(5){top:15%;left:48%;animation:float 3s ease-in-out infinite}
.node:nth-child(6){bottom:20%;right:12%;animation:float 4s ease-in-out infinite 1s;background:var(--cyan);box-shadow:0 0 10px rgba(6,182,212,0.4)}
.node:nth-child(7){top:50%;left:5%;animation:float 3.5s ease-in-out infinite 0.5s}
.node:nth-child(8){bottom:10%;left:30%;animation:float 4.5s ease-in-out infinite 2s;background:var(--cyan);box-shadow:0 0 10px rgba(6,182,212,0.4)}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* === CERT BADGES (removed per user request) === */

/* === GRIDS === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === STAT CARDS === */
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* === PROCESS === */
.process-step { text-align: center; padding: 28px 16px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); transition: all 0.3s; }
.process-step:hover { border-color: var(--accent-200); box-shadow: var(--shadow-md); }
.process-number { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.1rem; font-weight: 800; }

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 20px; transition: all 0.3s; text-align: center; position: relative; overflow: visible; }
.service-card:hover { border-color: var(--accent-200); box-shadow: var(--shadow-md); }
.service-card i { font-size: 2rem; margin-bottom: 12px; }
.service-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.service-card p { font-size: 0.72rem; color: var(--text-secondary); margin-top: 4px; }

/* Service hover popup */
.service-card { position: relative; overflow: visible; }
.service-popup {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    width: 260px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    text-align: left;
}
.service-popup::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -7px;
    border: 7px solid transparent;
    border-bottom-color: var(--border);
}
.service-popup::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    border: 6px solid transparent;
    border-bottom-color: var(--bg-card);
}
.service-card:hover .service-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.service-popup p { font-size: 0.76rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

.services-grid { overflow: visible; }

/* === CASE STUDY === */
.case-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; box-shadow: var(--shadow-sm); }
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.case-card-header { padding: 24px 24px 16px; cursor: pointer; }
.case-card-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.case-card-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.case-card-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.case-card-metrics { display: flex; gap: 16px; padding: 0 24px 16px; }
.case-card-metrics .metric { text-align: center; }
.case-card-metrics .metric-value { font-size: 1rem; font-weight: 800; color: var(--accent); }
.case-card-metrics .metric-label { font-size: 0.65rem; color: var(--text-muted); }
.case-card-actions { display: flex; justify-content: center; padding: 16px 24px; border-top: 1px solid var(--border-light); background: var(--gray-50); }

/* === PARTNERS & MARQUEE === */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.partners-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 16px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.partners-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}
.partners-track:hover {
    animation-play-state: paused;
}
.partners-slide {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    flex-shrink: 0;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.partner-card {
    flex: 0 0 220px;
    width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    min-height: 130px;
    box-shadow: var(--shadow-sm);
}
.partner-card:hover { border-color: var(--accent-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.partner-card img { height: 48px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(20%); transition: filter 0.3s, transform 0.3s; }
.partner-card:hover img { filter: none; transform: scale(1.05); }
.partner-card span { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); text-align: center; line-height: 1.35; }

/* === INDUSTRY CARD === */
.industry-card { text-align: center; padding: 24px 12px; border: 1px solid var(--border); border-radius: var(--radius-md); transition: all 0.3s; background: var(--bg-card); }
.industry-card:hover { border-color: var(--blue-300); background: var(--accent-bg); box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* === TESTIMONIAL === */
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* === FAQ === */
.faq-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; cursor: pointer; transition: all 0.3s; box-shadow: var(--shadow-sm); }
.faq-card:hover { border-color: var(--accent-200); box-shadow: var(--shadow-md); }
.faq-answer { display: none; margin-top: 12px; }
.faq-card.active .faq-answer { display: block; }
.faq-card.active .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.3s; }

/* === CTA INPUT === */
.cta-input { flex: 1; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--bg-card); color: var(--text-primary); font-size: 0.88rem; outline: none; font-family: inherit; transition: border-color 0.3s; min-width: 200px; }
.cta-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow); }
.cta-input::placeholder { color: var(--text-muted); }

/* === FOOTER === */
.footer { background: var(--footer-bg); color: var(--footer-text); padding: 72px 24px 32px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-400), transparent); opacity: 0.3; }
.footer a { color: var(--footer-link); text-decoration: none; transition: color 0.3s; font-size: 0.82rem; }
.footer a:hover { color: var(--footer-link-hover); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 180px; width: auto; margin-bottom: 18px; }
.footer-brand-lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-brand-logo { height: 44px; width: auto; object-fit: contain; }
.footer-brand-text { display: flex; flex-direction: column; justify-content: center; text-align: left; }
.footer-brand-name { font-size: 1.15rem; font-weight: 800; color: #ffffff; line-height: 1.2; letter-spacing: -0.01em; }
.footer-brand-tagline { font-size: 0.72rem; font-weight: 500; color: #94a3b8; line-height: 1.3; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--footer-link); transition: all 0.3s; }
.footer-social a:hover { background: var(--accent); color: #ffffff; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
/* Footer certs removed */

/* === FLOATING SOCIAL === */
.floating-social { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.floating-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #ffffff; box-shadow: 0 4px 14px rgba(0,0,0,0.2); transition: all 0.3s; text-decoration: none; border: 2px solid rgba(255,255,255,0.2); }
.floating-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.floating-btn.whatsapp { background: #25D366; }
.floating-btn.linkedin { background: #0077B5; }
.floating-btn.email { background: var(--accent); }

/* === PRODUCT MOCKUP === */
.product-mockup { background: var(--gray-900); border: 1px solid var(--gray-700); border-radius: var(--radius-lg); padding: 24px; position: relative; overflow: hidden; color: var(--gray-300); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media(min-width:1400px) { .container{max-width:1320px} }

@media(max-width:1199px) {
    .container{max-width:960px}
    .services-grid{grid-template-columns:repeat(3,1fr)}
    .partners-grid{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:991px) {
    .container{max-width:720px}
    .hero-inner{grid-template-columns:1fr;text-align:center;gap:40px}
    .hero p{margin:0 auto 32px}
    .hero-visual{margin-top:10px}
    .nav-dropdown-menu { display: none !important; }
    .shield-wrap{width:260px;height:260px}
    .grid-2{grid-template-columns:1fr;gap:40px}
    .grid-3{grid-template-columns:repeat(2,1fr)}
    .grid-4{grid-template-columns:repeat(2,1fr)}
    .services-grid{grid-template-columns:repeat(2,1fr)}
    .partners-grid{grid-template-columns:repeat(2,1fr)}
    .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
    .nav-links{display:none}
    .nav-toggle{display:block}
    .cert-strip{justify-content:center}
}

@media(max-width:767px) {
    .container{padding:0 20px}
    .section-title{font-size:clamp(1.5rem,5vw,2rem)}
    .hero{min-height:auto;padding:120px 0 60px}
    .hero h1{font-size:clamp(2rem,6vw,2.8rem)}
    .shield-wrap{width:220px;height:220px}
    .grid-3{grid-template-columns:1fr}
    .grid-4{grid-template-columns:1fr 1fr}
    .services-grid{grid-template-columns:1fr 1fr}
    .partners-grid{grid-template-columns:1fr 1fr}
    .stats-grid{grid-template-columns:1fr 1fr}
    .footer-grid{grid-template-columns:1fr;gap:28px}
    .card{padding:24px 20px}
    .case-card-metrics{flex-wrap:wrap;gap:12px}
    .start-steps{grid-template-columns:1fr}
}

@media(max-width:575px) {
    .container{padding:0 16px}
    .hero h1{font-size:1.9rem}
    .shield-wrap{width:180px;height:180px}
    .shield-core{width:70px;height:70px;font-size:2rem;border-radius:14px}
    .btn{padding:12px 22px;font-size:0.84rem}
    .grid-4{grid-template-columns:1fr;gap:16px}
    .services-grid{grid-template-columns:1fr}
    .partners-grid{grid-template-columns:1fr 1fr}
    .start-steps{grid-template-columns:1fr}
    .floating-social{bottom:16px;right:16px}
    .floating-btn{width:42px;height:42px;font-size:1.1rem}
    .nav-logo img{height:40px}
    nav.scrolled .nav-logo img{height:32px}
    .footer-logo{height:120px}
}

@media(max-width:479px) {
    .hero{padding:100px 0 50px}
    .hero h1{font-size:1.7rem}
    .section-title{font-size:1.4rem}
    nav{padding:10px 0}
    .footer-bottom{flex-direction:column;text-align:center}
}

/* Global mobile overflow fix */
html { max-width: 100%; overflow-x: hidden; }
body { max-width: 100%; overflow-x: hidden; }
img, video, iframe, object { max-width: 100%; }
.container { max-width: 100%; }

@media(hover:none) { .card:hover,.service-card:hover,.industry-card:hover,.partner-card:hover{transform:none} .service-popup { display: none !important; } }
@media(prefers-reduced-motion:reduce) { *,*::before,*::after{animation-duration:0.01ms!important;transition-duration:0.01ms!important} }
@media print { nav,.floating-social{display:none} body{background:white;color:black} }

/* === STAR RATINGS === */
.star-rating { display: flex; gap: 2px; margin-bottom: 12px; }
.star-rating i { color: #fbbf24; font-size: 0.9rem; }

/* === FOUNDER SECTION === */
.founder-section { display: flex; gap: 32px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); }
.founder-photo { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent-bg); box-shadow: 0 4px 20px var(--glow); flex-shrink: 0; }
.founder-name { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 2px; }
.founder-title { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.founder-bio { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; }

/* === HOW TO START === */
.start-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.start-step { text-align: center; padding: 32px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all 0.3s; }
.start-step:hover { border-color: var(--accent-200); box-shadow: var(--shadow-md); }
.start-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #ffffff; font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }

/* === MOBILE WHATSAPP BAR === */
.mobile-wa-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: #25D366; padding: 14px 24px; text-align: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); }
.mobile-wa-bar a { color: #ffffff; font-weight: 700; font-size: 0.9rem; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; }
@media(max-width:767px) { .mobile-wa-bar { display: block; } .floating-social { display: none; } body { padding-bottom: 56px; }  }
@media(max-width:767px) { .founder-section { flex-direction: column; text-align: center; } .start-steps { grid-template-columns: 1fr; } }

/* === PRODUCTS & ECOSYSTEM SHOWCASE === */
.products-hero,
.products-page-header,
main.products-main {
    padding-top: 110px !important;
}

.products-grid,
.product-cards-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 24px !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 20px 60px 20px !important;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    border-color: var(--accent-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-top {
    margin-bottom: 20px;
}

.product-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.product-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--accent-bg);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge-green {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-blue {
    background: rgba(79, 70, 229, 0.12);
    color: var(--accent);
    border: 1px solid rgba(79, 70, 229, 0.25);
}

.badge-purple {
    background: rgba(147, 51, 234, 0.12);
    color: #7c3aed;
    border: 1px solid rgba(147, 51, 234, 0.25);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-subtitle {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
    line-height: 1.4;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li i {
    color: var(--green);
    font-size: 0.85rem;
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--accent-bg);
    color: var(--accent);
    border: 1px solid var(--accent-200);
}

.product-cta-btn:hover {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 16px var(--glow);
    transform: translateY(-2px);
}

.product-cta-btn.primary {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.product-cta-btn.primary:hover {
    background: var(--accent-700);
}

/* Ecosystem preview on home page */
.ecosystem-preview-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.ecosystem-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 36px;
    margin-bottom: 40px;
}

.ecosystem-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ecosystem-preview-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ecosystem-preview-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-bg);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.ecosystem-preview-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.ecosystem-preview-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.ecosystem-preview-card .card-link-arrow {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media(max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .ecosystem-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* === TOP ANNOUNCEMENT BAR & TICKER === */
nav.nav-has-ticker,
nav:has(.top-announcement-bar) {
    padding-top: 0;
}

nav.nav-has-ticker .nav-inner,
nav:has(.top-announcement-bar) .nav-inner {
    padding: 6px 0;
}

.top-announcement-bar {
    background: #090e1a;
    color: #f1f5f9;
    font-size: 0.78rem;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
}

.top-announcement-bar a {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 4px;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-slide 28s linear infinite;
}

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

.ticker-item {
    padding: 0 16px;
}

.ticker-sep {
    color: #475569;
}

@keyframes ticker-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}







