:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #f8fafc;
    --accent: #60a5fa;
    --bg-light: #ffffff;
    --bg-gray: #f9fafb;
    --text-dark: #0f172a;
    --text-dim: #64748b;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    touch-action: pan-y;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ... existing body styles ... */

.blob {
    max-width: 100vw;
    /* Prevent blob from expanding body */
}

/* Price Value Layout Fix */
.price-val {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    /* Force vertical stack */
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1;
}

.price-val span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
    margin-top: 5px;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
    color: inherit;
}

ul {
    list-style: none;
}

.bg-gradient-text {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Effects */
.glow-text {
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.blob {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.blob-1 {
    top: 50px;
    left: -100px;
}

.blob-2 {
    bottom: 100px;
    right: -100px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a.link {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a.link:hover,
.nav-links a.link.active {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px -10px var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px var(--primary);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Mobile Menu Toggle (Animated Burger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    /* Bouncy effect */
}

/* Active State (X Shape) */
.menu-toggle.active .bar-1 {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--primary);
    /* Highlight color when open */
    width: 100%;
}

.menu-toggle.active .bar-2 {
    opacity: 0;
    transform: translateX(-20px);
    /* Slide out */
}

.menu-toggle.active .bar-3 {
    transform: rotate(-45deg) translate(8px, -8px);
    background-color: var(--primary);
    width: 100%;
    /* Keep width consistent */
}

/* Enhancing Mobile Nav Appearance */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 100%;
        /* Full screen width */
        height: 100%;
        background: rgba(2, 6, 23, 0.95);
        /* Deep dark background */
        backdrop-filter: blur(20px);
        /* Frosted glass effect */
        padding: 80px 30px;
        /* Reduced padding */
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        /* Reduced gap */
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        /* Smaller font text for mobile */
        color: rgba(255, 255, 255, 0.8);
        width: 100%;
        text-align: center;
        padding-bottom: 12px;
        /* Reduced padding */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        /* Separators */
        transform: translateX(50px);
        opacity: 0;
        transition: 0.3s ease;
    }

    /* Staggered text reveal animation */
    .nav-links.active a {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 12px;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.3s;
        border-bottom: none;
        width: auto;
        margin-top: 10px;
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    .nav-links.active a:nth-child(6) {
        transition-delay: 0.35s;
        border-bottom: none;
        width: auto;
        margin-top: 5px;
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    .nav-links a.active,
    .nav-links a:hover {
        color: var(--primary);
        letter-spacing: 2px;
        /* Spacing effect on hover */
    }
}

/* Hero Section */
.hero,
.page-hero,
.page-header {
    padding-top: 160px;
    /* Increased slightly for better visual separation */
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* Page Hero/Header Styling */
.page-hero,
.page-header {
    text-align: center;
}

.page-hero h1,
.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p,
.page-header p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* New Section: Stats */
.stats-section {
    padding: 10px 0;
    position: relative;
    margin-top: 0;
    background: linear-gradient(90deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    /* Divide into 4 equal columns on large screens */
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 1400px;
    /* Limit width slightly for legibility on ultra-wide */
    margin: 0 auto;
    padding: 0;
    align-items: center;
    /* Center vertically */
    height: 100%;
}

/* Responsive: stack on mobile */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    display: flex;
    flex-direction: row;
    /* Horizontal layout: Icon - Content */
    align-items: center;
    justify-content: center;
    /* Or flex-start if we want them aligned left within the cell */
    padding: 10px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
    text-align: left;
    /* Ensure text aligns left */
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0;
    /* Remove bottom margin */
    margin-right: 15px;
    /* Add right margin */
    opacity: 0.8;
}

.stat-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    /* Stack Number and Label vertically next to icon */
    justify-content: center;
}

.stat-item .num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    display: block;
    margin-bottom: 5px;
}

.stat-item .num.text-gradient {
    /* Success Green Gradient */
    background: linear-gradient(to right, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    /* Required for gradient text */
}

.stat-item .label {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* New Section: Steps (How it works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* New Section: Comparison */
.comparison-container {
    background: #f9fafb;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.comp-side {
    padding: 50px;
}

.comp-side.old {
    background: rgba(239, 68, 68, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.comp-side.new {
    background: rgba(16, 185, 129, 0.05);
}

.comp-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.comp-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* New Section: Mobile Mockup */
.mobile-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mockup-frame {
    border: 8px solid #333;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
    max-width: 300px;
    margin: 0 auto;
}

/* New Section: FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 25px;
    border-radius: 16px;
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    /* Premium Gradient Animation */
    background: linear-gradient(to right,
            #0f172a 0%,
            #3b82f6 25%,
            #60a5fa 50%,
            #3b82f6 75%,
            #0f172a 100%);
    background-size: 200% auto;
    color: var(--text-dark);
    /* Fallback */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premiumShine 4s linear infinite;
}

@keyframes premiumShine {
    to {
        background-position: 200% center;
    }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

/* Floating Cards Animation */
.float-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 20px;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.card-main {
    width: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.card-stat {
    top: 10%;
    right: 15%;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-user {
    bottom: 15%;
    left: 10%;
    z-index: 3;
    animation: float 5s ease-in-out infinite reverse;
}

.card-repair {
    top: 20%;
    left: 5%;
    z-index: 1;
    animation: float 7s ease-in-out infinite 1s;
    padding: 15px;
}

.card-msg {
    bottom: 25%;
    right: 5%;
    z-index: 3;
    animation: float 6s ease-in-out infinite 0.5s;
    padding: 15px;
}

.card-stock {
    top: 50%;
    right: 0%;
    transform: translate(0, -50%);
    /* Center Y but stick to right */
    z-index: 2;
    animation: float 5.5s ease-in-out infinite reverse 1.5s;
    padding: 15px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* INTEGRATIONS STRIP (INFINITE SCROLL) */
.integrations-strip {
    background: #f9fafb;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 60px 0;
    /* More padding */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 100px 0;
    /* Increased vertical spacing to prevent overlap */
    z-index: 10;
    /* Ensure it stays above or distinct */
}

.integrations-strip:before,
.integrations-strip:after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.integrations-strip:before {
    left: 0;
    background: linear-gradient(to right, var(--bg-gray), transparent);
}

.integrations-strip:after {
    right: 0;
    background: linear-gradient(to left, var(--bg-gray), transparent);
}

.logos-slide {
    display: inline-block;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logo-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 40px;
    font-size: 1.5rem;
    color: var(--text-dim);
    font-weight: 600;
    opacity: 0.5;
    transition: 0.3s;
}

.logo-item i {
    font-size: 2rem;
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.1);
}

/* BENTO GRID (Why Us) */
.bento-section {
    background: var(--bg-light);
    padding: 120px 0;
    /* Huge padding for airy feel */
}

.bento-section .section-header {
    margin-bottom: 80px;
    padding-top: 30px;
    /* Extra breathing room from top */
}

.bento-section .section-header h2 {
    font-size: 4rem;
    /* Scaled up for impact */
    margin-bottom: 20px;
    line-height: 1.1;
}

.bento-section .section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-dim);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 40px;
    /* Increased gap */
}

.bento-card {
    background: #f9fafb;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bento-card.big-card {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.bento-card.wide-card {
    grid-column: span 2;
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.bento-content p {
    color: var(--text-dim);
    font-size: 1rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.icon-circle.accent {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.icon-circle.success {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-card.big-card,
    .bento-card.wide-card,
    .bento-card {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }
}


/* PROCESS TIMELINE */
.process-section {
    padding: 120px 0;
}

.process-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 100px;
    padding: 0 40px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 1;
}

/* Animated filling line */
.process-line:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
    animation: fillLine 4s linear infinite;
}

@keyframes fillLine {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 100%;
        opacity: 0;
    }
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-dim);
    transition: 0.3s;
}

.process-step:hover .step-icon {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .process-line {
        width: 4px;
        height: 100%;
        left: 40px;
        /* Center with icon */
        top: 0;
    }

    .process-line:after {
        width: 100%;
        height: 0;
        animation: fillLineVert 4s linear infinite;
    }

    .process-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .step-icon {
        margin: 0;
    }

    @keyframes fillLineVert {
        0% {
            height: 0;
        }

        50% {
            height: 100%;
        }

        100% {
            height: 100%;
            opacity: 0;
        }
    }
}

/* TERMINAL SECTION */
.terminal-section {
    padding: 120px 0;
}

.terminal-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background: #334155;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.btn-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-dot.red {
    background: #ef4444;
}

.btn-dot.yellow {
    background: #f59e0b;
}

.btn-dot.green {
    background: #22c55e;
}

.terminal-title {
    flex: 1;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 20px;
    min-height: 300px;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}


.section {
    padding: 120px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features {
    background: var(--bg-gray);
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2,
.section-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-grid,
.pricing-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.features-grid {
    padding-bottom: 100px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    border-radius: 24px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #f9fafb;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-dim);
}

.feature-card ul {
    margin-top: 15px;
}

.feature-card ul li {
    margin-bottom: 8px;
    color: var(--text-dim);
}

.feature-card ul li i {
    margin-right: 8px;
    color: #34d399;
}

/* Detail Sections (teknikpro.php) */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.visual-card {
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.feature-list li i {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {

    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card.featured {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.05) 0%, #ffffff 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

/* Price styles moved to top of file */

.price-list {
    margin: 30px 0;
    text-align: left;
    flex: 1;
}

.price-list li {
    margin-bottom: 12px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-list li i {
    color: #34d399;
}


/* Footer */
footer {
    background: var(--bg-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 80px;
    padding-bottom: 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-dim);
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Navbar Mobile Styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0f172a;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px;
        z-index: 999;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-visual {
        display: block !important;
        height: 400px;
        transform: scale(0.9);
        margin-bottom: 20px;
    }

    .card-main {
        width: 280px;
    }

    /* TeknikPro Detail Styles Mobile */
    .section-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 576px) {

    .hero-content h1,
    .page-hero h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        display: block !important;
        height: 350px;
        transform: scale(0.75);
        margin-top: -20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Animation States */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Stagger delays for grids (optional simple approach) */
.feature-grid>*:nth-child(2) {
    transition-delay: 0.1s !important;
}

.feature-grid>*:nth-child(3) {
    transition-delay: 0.2s !important;
}

.feature-grid>*:nth-child(4) {
    transition-delay: 0.3s !important;
}

/* Continuous Pulse for Important Buttons */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.btn-primary.pulse-btn {
    animation: pulse-glow 2s infinite;
}

/* Gradient Text Animation */
.bg-gradient-text {
    background-size: 200% auto;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Float Animation for Mobile Mockup */
.mockup-frame {
    animation: float-delayed 6s ease-in-out infinite;
}

@keyframes float-delayed {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}