/* 
   Tiknet Premium Design System 
   Font: 'Outfit', sans-serif (Primary), 'Inter', sans-serif (Body/Fallback)
*/

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

:root {
    /* Colors - Professional Tech Palette */
    --color-primary: #0f393b;
    /* Deep Tech Green/Teal - Authoritative */
    --color-primary-light: #1a5154;

    --color-accent: #00d285;
    /* Electric Emerald - High Contrast Tech */
    --color-accent-hover: #00b371;
    --color-accent-glow: rgba(0, 210, 133, 0.4);

    --color-bg-body: #f8fafc;
    /* Cool Tech White */
    --color-bg-card: #ffffff;
    --color-bg-dark: #082021;
    /* Dark mode element bg */

    --color-text-main: #0f172a;
    /* Slate 900 */
    --color-text-muted: #64748b;
    /* Slate 500 */
    --color-text-light: #f1f5f9;
    /* Slate 100 */

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0f393b 0%, #082829 100%);
    --gradient-accent: linear-gradient(135deg, #00d285 0%, #00a86b 100%);
    --gradient-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-container: 1240px;

    /* Shadows & Glassmorphism */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 25px var(--color-accent-glow);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.8);
    --blur-amt: 16px;

    /* Radius - Squared for Tech Feel */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-full: 0;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
body {
    background-color: var(--color-bg-body);
    font-family: var(--font-body);
    color: var(--color-text-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Skeleton Loading System */
.skeleton {
    background-color: #e2e8f0;
    /* Slate 200 */
    background-image: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s infinite linear;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-pulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.skeleton-header {
    height: 60px;
    width: 100%;
}

.skeleton-footer {
    height: 300px;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Utility Containers */
.container {
    max-width: var(--space-container);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Premium Component Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    /* Smaller padding */
    border-radius: var(--radius-full);
    font-weight: 500;
    /* Slightly lighter weight */
    font-size: 0.95rem;
    /* Slightly smaller text */
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 57, 59, 0.2);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 57, 59, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border: 1px solid rgba(15, 57, 59, 0.1);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-padding {
    padding: var(--space-lg) 0;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    font-weight: 500;
}

.lang-switcher a {
    color: var(--color-primary);
    /* Dark text for light header */
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--color-primary);
    /* Dark text */
    opacity: 1;
    font-weight: 700;
}

.lang-switcher .divider {
    color: #cbd5e1;
}

/* Scroll Animations */
/* Scroll Animations - Progressive Enhancement */
.reveal {
    opacity: 1;
    /* Default to visible if JS fails */
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Only hide if JS is active */
body.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
}

body.js-enabled .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    /* Dark bars */
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.mobile-actions {
    display: none;
    /* Hidden on desktop */
}

/* Header */
/* Dynamic "Flip" Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.02);
    /* Start transparent/glass at top */
    backdrop-filter: blur(0px);
    /* Clear at top */
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    padding: 0.3rem 0;
    /* Larger at top */
}

/* Scrolled State - The "Flip" */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    /* Solid Tech White */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 57, 59, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0;
    /* Compact */
    transform: translateY(0);
    animation: headerFlip 0.5s ease;
    /* Visual cue for the "flip" */
}

@keyframes headerFlip {
    0% {
        transform: perspective(1000px) rotateX(5deg) translateY(-2px);
        opacity: 0.9;
    }

    100% {
        transform: perspective(1000px) rotateX(0) translateY(0);
        opacity: 1;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.site-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    background: white;
    border-radius: 0;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .site-logo {
    transform: scale(1.08) rotate(5deg);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 3px solid #f8fafc;
    transition: transform var(--transition-fast);
}

.icon-box:hover {
    transform: scale(1.05);
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:hover {
    color: var(--color-accent);
    /* Accent color on hover */
}

/* Nav link hover effect */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: var(--space-xl) 0 var(--space-lg);
    background-color: #ffffff;
    /* Soft Aurora Glows */
    background-image:
        radial-gradient(at 0% 0%, rgba(15, 57, 59, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 210, 133, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(255, 255, 255, 1) 0px, transparent 50%);
    /* Fade to white at bottom */
    overflow: hidden;
}

/* Subtle Micro-Dot Pattern (Connectivity Nodes) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Tiny dots instead of squares */
    background-image: radial-gradient(rgba(15, 57, 59, 0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* Grid Removed as requested */
/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
} */

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    /* Kept left for grid layout */
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    /* Light Slate for readability */
    margin-bottom: var(--space-lg);
    max-width: 600px;
    line-height: 1.6;
}

.hero-lite {
    background: var(--color-bg-body);
    text-align: center;
    padding-bottom: 2rem;
}

.display-1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    line-height: 1.1;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.bg-light-gradient {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    margin-top: 1.5rem;
    transition: var(--transition-smooth);
}

.learn-more:hover {
    color: var(--color-accent-dark);
    gap: 0.75rem;
}

.learn-more .arrow {
    transition: transform 0.3s ease;
}

.learn-more:hover .arrow {
    transform: translateX(4px);
}

/* Highlights Grid - Legacy support if needed elsewhere, but transitioned to feature-rows */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* New Alternating Feature Rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image-container {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid #f1f5f9;
}

.feature-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image-container:hover img {
    transform: scale(1.05);
}

.feature-content {
    flex: 1;
}

.feature-label {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.75rem;
}

.feature-content h3 {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Card Modernization: Full Top Image */
.highlight-card,
.solution-card {
    background: white;
    border-radius: 0;
    /* Sharp industrial corners */
    border: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.highlight-card:hover,
.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent-light);
}

.card-top-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.card-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.highlight-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: auto;
}

.icon-box {
    width: 100%;
    height: 310px;
    overflow: hidden;
    margin-bottom: 0;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Specific positioning classes (.img-pos-*) handle focal points */
    transition: transform 0.5s ease;
}

/* Custom Image Positioning for Service Assets */
.img-pos-home-wifi {
    object-position: 44.4% 57.9%;
    transform: scale(1.0);
}

.img-pos-roaming {
    object-position: 46.3% 71.3%;
    transform: scale(1.0);
}

.img-pos-security {
    object-position: 47.3% 66.7%;
    transform: scale(1.0);
}

.img-pos-optimization {
    object-position: 50% 50%;
    transform: scale(1.0);
}

.img-pos-office-wifi {
    object-position: 50% 50%;
    transform: scale(1.0);
}

.img-pos-remote-work {
    object-position: 50% 50%;
    transform: scale(1.0);
}

.img-pos-education {
    object-position: 40.7% 69.9%;
    transform: scale(1.0);
}

.img-pos-cloud {
    object-position: 50% 50%;
    transform: scale(1.0);
}

.img-pos-continuity {
    object-position: 42% 78.7%;
    transform: scale(1.0);
}

.img-pos-compliance {
    object-position: 56.6% 47.4%;
    transform: scale(1.0);
}



/* Premium Image Hero (Used for Partner Page) */
.image-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.image-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 57, 59, 0.9) 0%, rgba(15, 57, 59, 0.4) 50%, rgba(15, 57, 59, 0.1) 100%);
    z-index: 1;
}

.image-hero .container {
    position: relative;
    z-index: 2;
    text-align: left;
}

/* Category Cards (Sophisticated B2B Look) */
.category-card {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

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

.category-card .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 0;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 2px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
}

.category-card .icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.category-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Value Prop / Steps */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    margin-bottom: -1.5rem;
}

/* Solutions Section */
.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.solution-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.solution-card .card-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.solution-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.solution-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-card .link-text {
    font-weight: 600;
    color: var(--color-accent);
}

.highlight-solution {
    background: var(--color-primary);
    color: white;
}

.highlight-solution h3,
.highlight-solution p,
.highlight-solution .link-text {
    color: white;
}

.highlight-solution p {
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: var(--color-primary);
    color: white;
    padding: var(--space-lg) 0;
    margin-top: var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-lg);
}

.footer-col ul {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: white;
    text-decoration: none;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-actions {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .main-nav a {
        font-size: 1.25rem;
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }

    .mobile-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* Highlights Grid */
    .highlights-grid,
    .partner-type-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-md);
    }

    .highlight-card {
        background: white;
        padding: var(--space-md);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        border: 1px solid #f1f5f9;
        transition: var(--transition-smooth);
    }

    .highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--color-accent-glow);
    }

    .icon-box {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Value Prop / Steps */
    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto var(--space-lg);
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }

    .step-item {
        text-align: center;
        position: relative;
    }

    .step-number {
        display: block;
        font-family: var(--font-heading);
        font-size: 4rem;
        font-weight: 800;
        color: rgba(0, 0, 0, 0.03);
        line-height: 1;
        margin-bottom: -1.5rem;
    }

    /* Solutions Section */
    .section-title {
        font-size: 2.5rem;
        margin-bottom: var(--space-lg);
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .solution-card {
        display: flex;
        flex-direction: column;
        background: white;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition-smooth);
        border: 1px solid transparent;
    }

    .solution-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    /* How It Works Images */
    .step-image-container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 400px;
        /* Increased height for better visibility */
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .step-image {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        border-radius: var(--radius-lg);
        transition: transform 0.3s ease;
    }

    .step-image:hover {
        transform: scale(1.02);
    }

    .solution-card .card-content {
        padding: var(--space-md);
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .solution-card h3 {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .solution-card p {
        color: var(--color-text-muted);
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .solution-card .link-text {
        font-weight: 600;
        color: var(--color-accent);
    }

    .highlight-solution {
        background: var(--color-primary);
        color: white;
    }

    .highlight-solution h3,
    .highlight-solution p,
    .highlight-solution .link-text {
        color: white;
    }

    .highlight-solution p {
        opacity: 0.9;
    }

    .site-footer {
        padding: 6rem 0 3rem;
        background-color: var(--color-primary);
        color: white;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-col ul {
        gap: 0.5rem;
        display: flex;
        flex-direction: column;
    }

    .footer-col a:hover {
        color: white;
        text-decoration: underline;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: var(--space-lg);
        padding-top: var(--space-md);
        text-align: center;
        font-size: 0.875rem;
        opacity: 0.6;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .header-actions {
            display: none;
        }

        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-buttons {
            justify-content: center;
        }

        .steps-grid {
            grid-template-columns: 1fr 1fr;
        }

        .solutions-grid {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .main-nav {
            position: fixed;
            top: 80px;
            /* Header height */
            left: 0;
            width: 100%;
            background: white;
            padding: 2rem 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transform: translateY(-150%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 99;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            box-shadow: var(--shadow-lg);
        }

        .main-nav.active {
            transform: translateY(0);
        }

        .main-nav ul {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        /* Hamburger Animation */
        .mobile-menu-toggle.active .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .mobile-menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            max-width: 300px;
        }

        .mobile-actions .btn {
            width: 100%;
        }


        .hero-title {
            font-size: 2.5rem;
        }

        /* Grids Collapse - Mobile */
        .highlights-grid,
        .steps-grid,
        .solutions-grid,
        .footer-grid,
        .partner-type-grid {
            grid-template-columns: 1fr;
        }

        .feature-row {
            flex-direction: column !important;
            gap: 2rem;
            text-align: center;
            margin-bottom: 4rem;
        }

        .feature-image-container {
            width: 100%;
        }

        .steps-grid {
            gap: 3rem;
        }

        .hero-container {
            padding-top: 2rem;
        }
    }

    .hero-image-container {
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: var(--color-bg-dark);
    }

    .hero-full-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
        image-rendering: -webkit-optimize-contrast;
    }

    .hero-image-container:hover .hero-full-image {
        transform: scale(1.02);
    }

    .graph-node {
        position: absolute;
        background: white;
        border-radius: 0;
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
        z-index: 2;
        transition: all 0.3s ease;
    }

    .graph-node.center {
        width: 60px;
        height: 60px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: var(--gradient-accent);
        border: 3px solid white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .graph-node.center::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 0;
        border: 2px solid var(--color-primary);
        animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

    .graph-node.satellite {
        width: 40px;
        height: 40px;
        background: white;
        border: 2px solid var(--color-primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .graph-icon {
        font-size: 1.2rem;
    }

    .graph-node.satellite:nth-child(2) {
        top: 20%;
        left: 20%;
        animation: float 6s ease-in-out infinite;
    }

    .graph-node.satellite:nth-child(3) {
        top: 20%;
        right: 20%;
        animation: float 6s ease-in-out infinite 1s;
    }

    .graph-node.satellite:nth-child(4) {
        bottom: 20%;
        right: 20%;
        animation: float 6s ease-in-out infinite 2s;
    }

    .graph-node.satellite:nth-child(5) {
        bottom: 20%;
        left: 20%;
        animation: float 6s ease-in-out infinite 3s;
    }

    .graph-node.satellite:nth-child(6) {
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        animation: float-vertical 5s ease-in-out infinite 0.5s;
    }

    .graph-node.satellite:nth-child(7) {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        animation: float-vertical 5s ease-in-out infinite 2.5s;
    }

    .connection-lines {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .connection-line {
        fill: none;
        stroke: var(--color-primary);
        stroke-width: 2;
        stroke-dasharray: 10;
        opacity: 0.2;
        animation: dash 30s linear infinite;
    }

    @keyframes pulse-ring {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
        }

        70% {
            transform: scale(1);
            box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
        }

        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(0, 0);
        }

        50% {
            transform: translate(0, -10px);
        }
    }

    @keyframes float-vertical {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-10px);
        }
    }

    @keyframes dash {
        to {
            stroke-dashoffset: -1000;
        }
    }

    /* Tooltip on hover */
    .graph-node.satellite:hover::before {
        content: attr(data-label);
        position: absolute;
        bottom: 110%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--color-text-main);
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        font-size: 0.75rem;
        white-space: nowrap;
        opacity: 0;
        animation: fade-in 0.2s forwards;
    }

    @keyframes fade-in {
        to {
            opacity: 1;
        }
    }
}

/* 
   Mobile Hero Carousel 
   -------------------------------------------------- 
*/

.mobile-only-carousel {
    display: none;
    /* Hidden by default on desktop */
    margin-bottom: var(--space-md);
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-only-carousel {
        display: block;
    }

    .hero-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-sm);
        padding-bottom: var(--space-xs);
        /* Space for scrollbar if visible */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .hero-carousel::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .carousel-item {
        flex: 0 0 85%;
        /* Show 85% of slide to encourage scroll */
        scroll-snap-align: center;
        border-radius: 0;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        margin-right: var(--space-xs);
    }

    .carousel-item:first-child {
        margin-left: 0;
    }

    .carousel-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0;
        aspect-ratio: 2.35/1;
        object-fit: cover;
    }

    /* Adjust Hero Spacing for Mobile when Carousel is present */
    .hero-section {
        padding-top: var(--space-md) !important;
    }

    .hero-content {
        padding-top: 0 !important;
    }
}

/* Human-Centric Icon Overhaul */
.graph-ico.node-image {
    width: 48px;
    height: 48px;
    border-radius: 0;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.node-image:hover {
    transform: scale(1.2);
    z-index: 10;
}

.graph-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.graph-node.center .graph-icon-img {
    border: 3px solid white;
}

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 57, 59, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amt));
    border: var(--glass-border);
    border-radius: 1rem;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-logo {
    height: 48px;
    width: auto;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(0, 210, 133, 0.3);
}

#modalTitle {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

#modalMessage {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ticket-id-box {
    background: rgba(15, 57, 59, 0.05);
    border: 1px dashed var(--color-primary);
    padding: 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

.ticket-id-box .label {
    font-weight: 600;
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.ticket-id-box .value {
    font-family: monospace;
    font-weight: 700;
    color: var(--color-accent-hover);
    font-size: 1rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-footer .btn {
    width: 100%;
}
/* Partner App Showcase & Mockups */
.mockup-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
}

.iphone-mockup {
    width: 280px;
    height: 580px;
    background: #1e293b; /* Dark Slate background */
    border-radius: 40px;
    border: 8px solid #334155;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25), 
                0 30px 60px -30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.iphone-mockup:hover {
    transform: rotateY(-10deg) rotateX(10deg);
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #334155;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 100;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
    position: relative;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.05) brightness(1.02) saturate(1.05);
}

/* Feature Showcase Section */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.feature-list-visual {
    padding-left: var(--space-lg);
}

.feature-item-inline {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
    transition: transform 0.3s ease;
}

.feature-item-inline:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-item-inline h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Monetization Page Specifics */
.monetize-hero {
    background: linear-gradient(rgba(15, 57, 59, 0.9), rgba(15, 57, 59, 0.9));
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.monetize-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-bg-body);
    transform: skewY(-2deg);
}

.stat-pill {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 210, 133, 0.1);
    color: var(--color-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 210, 133, 0.2);
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

/* FAQ Layout */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

/* Stats / ROI Cards */
.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.roi-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-card h3 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.bg-muted {
    background-color: #f1f5f9;
}

.text-center {
    text-align: center;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hardware Section Style */
.hardware-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hardware-specs {
    list-style: none;
    padding: 0;
}

.hardware-specs li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
}

.hardware-specs li::before {
    content: '→';
    color: var(--color-accent);
    font-weight: bold;
}

/* One-Page Specific Layouts */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-item p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .roi-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-showcase, .hardware-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-list-visual {
        padding-left: 0;
        margin-top: 2rem;
    }
}
