@import url('https://fonts.googleapis.css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #e31837; /* ID-Clouds brand red */
    --primary-red-hover: #c4122d;
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --border-light: #ecf0f1;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    color: var(--text-main);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-red-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: var(--bg-secondary);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.lang-switch a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.lang-switch a.active {
    color: var(--primary-red);
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0%, rgba(245, 246, 248, 0.88) 100%), url('../images/hero_bg_v2.png') center/cover no-repeat;
    padding-top: 5rem;
}

.hero-content {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 4.5rem 3rem;
    border-radius: var(--radius-lg);
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(227, 24, 55, 0.02);
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: var(--transition);
}

.hero-content:hover {
    box-shadow: 0 30px 60px rgba(227, 24, 55, 0.08);
    border-color: rgba(227, 24, 55, 0.2);
    transform: translateY(-2px);
}

.corner-bracket {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(227, 24, 55, 0.35);
    border-style: solid;
    transition: var(--transition);
}

.hero-content:hover .corner-bracket {
    border-color: var(--primary-red);
    width: 25px;
    height: 25px;
}

.corner-bracket.top-left {
    top: 20px;
    left: 20px;
    border-width: 3px 0 0 3px;
}

.corner-bracket.top-right {
    top: 20px;
    right: 20px;
    border-width: 3px 3px 0 0;
}

.corner-bracket.bottom-left {
    bottom: 20px;
    left: 20px;
    border-width: 0 0 3px 3px;
}

.corner-bracket.bottom-right {
    bottom: 20px;
    right: 20px;
    border-width: 0 3px 3px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(227, 24, 55, 0.06);
    border: 1px solid rgba(227, 24, 55, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-red);
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.4);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(227, 24, 55, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 24, 55, 0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-red) 30%, #a81024 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero p.tagline {
    font-size: 1.35rem;
    font-weight: 500;
    color: #34495e;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-red-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 24, 55, 0.4);
}

/* Cards (Services & About) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(227, 24, 55, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    margin: 0;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 24, 55, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Clients */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    max-width: 150px;
    height: auto;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.footer p {
    color: #888;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Infinite Carousel */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 33)); }
}

.carousel {
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel::before,
.carousel::after {
    background: linear-gradient(to right, rgba(248,249,250, 1) 0%, rgba(248,249,250, 0) 100%);
    content: "";
    height: 120px;
    position: absolute;
    width: 150px;
    z-index: 2;
}

.carousel::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.carousel::before {
    left: 0;
    top: 0;
}

.carousel-track {
    animation: scroll 80s linear infinite;
    display: flex;
    width: calc(250px * 66); /* 33 logos * 2 */
}

.slide {
    height: 120px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: -1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.brand-logo:hover {
    color: var(--primary-red);
}

.client-img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile nav approach for now */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Description Carousel */
.desc-carousel {
    max-width: 1100px;
    margin: 3rem auto 0 auto;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.desc-carousel:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 24, 55, 0.1);
}

.desc-carousel-slides {
    position: relative;
    flex-grow: 1;
}

.desc-slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.desc-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.desc-slide-inner {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.desc-slide-media {
    flex: 1;
    min-width: 280px;
    max-width: 440px;
}

.desc-slide-media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.desc-slide-text {
    flex: 1.2;
    min-width: 300px;
}

.desc-slide-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 24, 55, 0.08);
    color: var(--primary-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(227, 24, 55, 0.1);
}

.desc-slide-icon svg {
    width: 28px;
    height: 28px;
}

.desc-slide h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.desc-slide p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Controls */
.desc-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.2);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot:hover {
    background: var(--text-muted);
}

.carousel-dots .dot.active {
    background: var(--primary-red);
    width: 24px;
    border-radius: 5px;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-main);
    transition: var(--transition);
}

.whatsapp-link {
    color: #25d366;
}

.whatsapp-link:hover {
    color: #128c7e;
    transform: translateY(-2px);
}

.icon-whatsapp {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Product Page Specific Styles */
.card-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.card-wrapper:hover {
    color: inherit;
}

.read-more-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-red);
    display: inline-block;
    margin-top: auto;
    transition: var(--transition);
}

.card-wrapper:hover .read-more-link {
    transform: translateX(5px);
    color: var(--primary-red-hover);
}

/* Product Hero */
.product-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem 0;
    border-bottom: 1px solid var(--border-light);
}

.product-hero.asset-tracking-hero {
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.8) 100%), url('../images/asset_tracking_hero.png') center/cover no-repeat;
}

.product-hero.asset-tracking-hero h1 {
    color: white;
}

.product-hero.asset-tracking-hero p.tagline {
    color: #cbd5e1;
}

.product-hero.asset-tracking-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-hero.asset-tracking-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.product-hero.flit-id-hero {
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.75) 100%), url('../images/flit_id_hero.png') center/cover no-repeat;
}

.product-hero.flit-id-hero h1 {
    color: white;
}

.product-hero.flit-id-hero p.tagline {
    color: #cbd5e1;
}

.product-hero.flit-id-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-hero.flit-id-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.product-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #28a745;
    text-transform: uppercase;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary-green {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: var(--transition);
}

.btn-primary-green:hover {
    background: #218838;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border-light);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Grids */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Intro Section */
.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.bullet-icon {
    width: 20px;
    height: 20px;
    color: #28a745;
    flex-shrink: 0;
}

/* Simulator Mockup */
.tracker-simulator, .saas-simulator {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
}

.tracker-simulator:hover, .saas-simulator:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.simulator-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dots-group {
    display: flex;
    gap: 0.4rem;
}

.dots-group span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.simulator-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.sim-map {
    height: 300px;
    background: #e5e9f0 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M 0 50 L 100 50 M 50 0 L 50 100" stroke="%23d8dee9" stroke-width="2"/><circle cx="50" cy="50" r="3" fill="%23d8dee9"/></svg>') repeat;
    position: relative;
    overflow: hidden;
}

.sim-route-line {
    position: absolute;
    top: 150px;
    left: -50px;
    width: 250px;
    height: 2px;
    border-bottom: 3px dashed #28a745;
    transform: rotate(25deg);
    transform-origin: left;
}

.sim-vehicle-marker {
    position: absolute;
    top: 170px;
    left: 120px;
    color: #28a745;
    z-index: 5;
}

.car-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.marker-pulse {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid #28a745;
    border-radius: 50%;
    animation: marker-pulse-anim 1.5s infinite;
}

@keyframes marker-pulse-anim {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.sim-vehicle-card {
    position: absolute;
    top: 30px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    z-index: 10;
}

/* Feature Premium Cards */
.feature-card-premium {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(40, 167, 69, 0.15);
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.icon-wrap-green {
    width: 60px;
    height: 60px;
    background: rgba(40, 167, 69, 0.08);
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.1);
}

/* Module Cards */
.module-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(40, 167, 69, 0.1);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.icon-circle-green {
    width: 40px;
    height: 40px;
    background: rgba(40, 167, 69, 0.08);
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lifecycle Section & Flow */
.lifecycle-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.lifecycle-step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
}

.lifecycle-step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(40, 167, 69, 0.1);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(40, 167, 69, 0.15);
    margin-bottom: 1rem;
}

.lifecycle-step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.lifecycle-step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Product Footer / CTA */
.product-footer {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(255,255,255,1) 0%, rgba(248,249,250,1) 100%);
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.contact-details-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: 1px solid var(--border-light);
    padding: 2rem 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 2rem auto;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.text-center {
    text-align: center !important;
}

.contact-details-box p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* FLiT.ID Specifics */
.saas-highlight-box {
    background: rgba(40, 167, 69, 0.04);
    border-left: 4px solid #28a745;
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 2rem;
}

.saas-highlight-box h4 {
    margin-bottom: 0.5rem;
    color: #28a745;
}

.saas-highlight-box p {
    margin: 0;
    font-size: 1rem;
}

.journey-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.journey-step-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.journey-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(40,167,69,0.15);
}

.journey-badge {
    display: inline-block;
    background: rgba(40,167,69,0.1);
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.sub-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.integrations-list, .solutions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.integration-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-showcase-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.product-showcase-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Hero Glow Accents */
.hero-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(40, 167, 69, 0.12);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 250px;
    height: 250px;
    background: rgba(32, 201, 151, 0.12);
    border-radius: 50%;
    filter: blur(70px);
}

/* For Flit.ID (blue-green) */
.hero-glow-blue-1 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(56, 189, 248, 0.12);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-blue-2 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 250px;
    height: 250px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    filter: blur(70px);
}

/* Grid overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

.product-hero {
    position: relative;
    overflow: hidden;
}

.product-hero-content {
    position: relative;
    z-index: 5;
}

/* Feature Mock Widgets */
.mock-widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    margin-top: 1.2rem;
    font-family: 'Inter', monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.01);
    text-align: left;
}

.mock-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.75rem;
}

.mock-status-dot-green {
    width: 7px;
    height: 7px;
    background: #28a745;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.mock-progress-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.2rem;
}

.mock-progress-fill {
    height: 100%;
    background: #28a745;
    border-radius: 3px;
}

/* Specific mock widget layouts */
.temp-danger {
    color: #e31837;
    font-weight: bold;
}

.temp-safe {
    color: #28a745;
    font-weight: bold;
}

.mock-route-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    position: relative;
    padding-bottom: 0.3rem;
}

.mock-route-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    z-index: 3;
    background: var(--bg-secondary);
    padding: 0 4px;
}

.mock-route-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
}

.mock-route-dot.active {
    background: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

.mock-route-line-container {
    position: absolute;
    top: 4px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #cbd5e1;
    z-index: 1;
}

.mock-route-line-fill {
    height: 100%;
    background: #28a745;
}

.mock-route-step span {
    font-size: 0.6rem;
    font-weight: 500;
}

/* Hero Brand Logo Styling */
.hero-brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}

.hero-brand-logo:hover {
    transform: scale(1.05);
}

/* Interconnect Section Card Alignment */
.interconnect .grid-2col {
    align-items: stretch;
}

.interconnect .grid-2col .card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.interconnect .grid-2col .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(40, 167, 69, 0.1);
}

.interconnect .grid-2col .card .integrations-list,
.interconnect .grid-2col .card .solutions-list {
    margin-top: auto;
}

@keyframes pulse-dot-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Technology Consulting Custom Themes & Accents */
.hero-glow-purple-1 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(111, 66, 193, 0.12); /* Purple */
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-purple-2 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 250px;
    height: 250px;
    background: rgba(138, 43, 226, 0.1); /* Indigo/Violet */
    border-radius: 50%;
    filter: blur(70px);
}

.icon-wrap-purple {
    width: 60px;
    height: 60px;
    background: rgba(111, 66, 193, 0.08);
    color: #6f42c1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.1);
}

.icon-circle-purple {
    width: 40px;
    height: 40px;
    background: rgba(111, 66, 193, 0.08);
    color: #6f42c1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-purple {
    display: inline-block;
    background: #6f42c1;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
    transition: var(--transition);
}

.btn-primary-purple:hover {
    background: #5a32a3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
}

/* Feature Premium Card (Purple Variant) */
.feature-card-premium-purple {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card-premium-purple::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6f42c1 0%, #8a2be2 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card-premium-purple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(111, 66, 193, 0.15);
}

.feature-card-premium-purple:hover::before {
    opacity: 1;
}

/* Interactive Infrastructure Hub styles */
.infrastructure-hub-simulator {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 3rem;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border-light);
}

.infra-panel {
    padding: 2rem;
    background: #ffffff;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.infra-panel:last-child {
    border-right: none;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.panel-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.panel-icon {
    color: #6f42c1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Panel 1: Cloud Cluster */
.cloud-node {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.node-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-family: monospace;
}

.node-name {
    font-weight: 600;
    color: var(--text-main);
}

.node-load {
    color: var(--text-muted);
}

.node-progress {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.node-progress-fill {
    height: 100%;
    border-radius: 3px;
}

.fill-purple { background: #6f42c1; }
.fill-blue { background: #007bff; }
.fill-teal { background: #20c997; }

/* Panel 2: API Gateway Data Routing Visualizer */
.api-flow-container {
    height: 220px;
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.svg-flow-path {
    width: 100%;
    height: 100%;
}

.routing-line {
    fill: none;
    stroke: #cbd5e1;
    stroke-width: 2;
    stroke-linecap: round;
}

.routing-line-active {
    fill: none;
    stroke: #6f42c1;
    stroke-width: 2.5;
    stroke-dasharray: 8 16;
    animation: flow-run 2s linear infinite;
}

.routing-line-active-blue {
    fill: none;
    stroke: #007bff;
    stroke-width: 2.5;
    stroke-dasharray: 8 16;
    animation: flow-run 1.5s linear infinite;
}

.routing-line-active-teal {
    fill: none;
    stroke: #20c997;
    stroke-width: 2.5;
    stroke-dasharray: 8 16;
    animation: flow-run 2.5s linear infinite;
}

@keyframes flow-run {
    to {
        stroke-dashoffset: -40;
    }
}

.flow-node-dot {
    fill: #cbd5e1;
    stroke: #ffffff;
    stroke-width: 2;
}

.flow-node-dot.gateway {
    fill: #6f42c1;
}

.flow-node-dot.dest {
    fill: #20c997;
}

.flow-label {
    font-size: 9px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    fill: var(--text-main);
}

.flow-label-muted {
    font-size: 8px;
    font-family: 'Inter', sans-serif;
    fill: var(--text-muted);
}

/* Panel 3: Ingestion & ML Processing */
.data-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: monospace;
    color: #6f42c1;
}

.ai-status-card {
    background: rgba(111, 66, 193, 0.04);
    border: 1px dashed rgba(111, 66, 193, 0.25);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.ai-title {
    color: #6f42c1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ai-dot {
    width: 6px;
    height: 6px;
    background: #6f42c1;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

.ai-model {
    color: var(--text-muted);
    font-family: monospace;
}

.ai-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ai-info-row strong {
    color: var(--text-main);
}