@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --primary: #4f46e5;
    /* Deeper Indigo */
    --primary-rgb: 79, 70, 229;
    --primary-dark: #3730a3;
    --secondary: #ec4899;
    --secondary-rgb: 236, 72, 153;
    --dark: #0f172a;
    --light: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --text-main: var(--slate-800);
    --text-light: var(--slate-500);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--light);
    line-height: 1.6;
}

.section-padding {
    padding: 120px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Refinements */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.sticky-cta>* {
    pointer-events: auto;
}

.btn-sticky {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 99px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-sticky:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--primary-dark);
}

.btn-whatsapp-sticky {
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    align-self: flex-end;
}

.btn-whatsapp-sticky:hover {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.btn-call-sticky {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    align-self: flex-end;
    animation: callPulse 2s infinite;
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

.btn-call-sticky:hover {
    transform: scale(1.1) rotate(-10deg);
}

/* 3. Problem-Solution Section */
.problem-solution {
    background: var(--slate-900);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.problem-solution h2,
.problem-solution h3 {
    color: white !important;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.problem-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.problem-box:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.problem-box i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(var(--secondary-rgb), 0.3));
}

.solution-hook {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 80px 40px;
    border-radius: 50px;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

.solution-hook::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3), transparent, rgba(var(--secondary-rgb), 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.solution-hook h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* 5. Why Choose Me & 6. How I Work */
.why-me-point {
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* 6. Elite Horizontal Workflow */
.workflow-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
}

.workflow-section .container {
    max-width: 1300px;
    /* Enhanced width for horizontal layout */
    margin: 0 auto;
}

.workflow-horizontal {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    gap: 30px;
    margin: 60px auto 0;
    padding-bottom: 40px;
    width: 100%;
}

/* Horizontal Connecting Line */
.workflow-progress-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right,
            rgba(var(--primary-rgb), 0.1),
            var(--primary),
            rgba(var(--secondary-rgb), 0.5));
    z-index: 1;
}

.workflow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 240px;
}

.workflow-num {
    width: 64px;
    height: 64px;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.workflow-step:hover .workflow-num {
    background: var(--primary);
    color: white;
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.3);
}

.workflow-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 35px;
    border: 1px solid var(--slate-100);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workflow-step:hover .workflow-card {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.workflow-icon-box {
    width: 54px;
    height: 54px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.workflow-step:hover .workflow-icon-box {
    background: var(--primary);
    color: white;
    transform: rotate(360deg);
}

.workflow-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--slate-900);
    font-weight: 700;
}

.workflow-card p {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
}

/* Benefit Tags (Floating above card) */
.workflow-benefit-tag {
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Background Effects */
.workflow-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .workflow-horizontal {
        overflow-x: auto;
        padding-bottom: 60px;
        -webkit-overflow-scrolling: touch;
    }

    .workflow-progress-line {
        min-width: 1200px;
    }
}

@media (max-width: 768px) {
    .workflow-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .workflow-progress-line {
        display: none;
    }
}


.glow-top-left {
    top: 0;
    left: -200px;
}

.glow-bottom-right {
    bottom: 0;
    right: -200px;
}

/* 7. Industries & 8. Tech Stack */
.industry-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--slate-600);
    transition: all 0.3s ease;
}

.tech-icon:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* 9. Results */
.result-stat {
    text-align: center;
    padding: 40px;
    border-radius: 30px;
    background: white;
    border: 1px solid var(--slate-100);
}

.result-stat .val {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}



body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #f8fafc;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    box-shadow: 0 10px 20px -10px rgba(var(--primary-rgb), 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: all 0.6s;
    z-index: -1;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -10px rgba(var(--primary-rgb), 0.6);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-pulse {
    animation: buttonPulse 2s infinite;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white !important;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    margin-left: 10px;
    font-weight: 700;
}

.announcement-bar a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.announcement-bar a:hover i {
    transform: translateX(5px);
}

/* Navbar Adjustments */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.has-announcement .navbar {
    top: 0;
    /* Or adjust based on scroll */
}

/* Service Engagement Enhancements */
.service-card {
    position: relative;
    padding-top: 3rem;
    /* Space for absolute badges */
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 20px;
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    animation: pulse-red 2s infinite;
    z-index: 10;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.trust-badge-pill {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.timer-container {
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 12px;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.timer-segment {
    text-align: center;
}

.timer-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    color: #ef4444;
}

.timer-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
}

.rating-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Partner Ecosystem */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.partner-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.partner-media {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.partner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.partner-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.partner-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 12px;
}

.partner-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 600px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
    }

    .partner-media {
        width: 100%;
        height: 200px;
    }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Services Grid */
/* White Premium Services */
#services {
    background: #f8fafc;
    background-image:
        radial-gradient(at 0% 0%, rgba(var(--primary-rgb), 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(var(--secondary-rgb), 0.03) 0px, transparent 50%);
    position: relative;
    padding: 100px 0;
}

.nixtio-greeting {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nixtio-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -2px;
    margin-bottom: 3.5rem;
    color: #0f172a !important;
}

.nixtio-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 30px !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05) !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: visible !important;
}

.nixtio-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(var(--primary-rgb), 0.2) !important;
}

.nixtio-icon {
    width: 44px !important;
    height: 44px !important;
    background: rgba(var(--primary-rgb), 0.06) !important;
    border-radius: 12px !important;
    margin: 0 0 1.25rem 0 !important;
    color: var(--primary) !important;
    font-size: 1.1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nixtio-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.nixtio-desc {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    color: #64748b !important;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.nixtio-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.nixtio-btn-info,
.nixtio-btn-quote {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.nixtio-btn-info {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.nixtio-btn-info:hover {
    background: #f1f5f9;
    color: var(--primary);
    border-color: var(--primary);
}

.nixtio-btn-quote {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.nixtio-btn-quote:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}



.nixtio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mascot Polish */
.peeking-mascot {
    position: absolute;
    top: -90px;
    right: 5px;
    width: 140px;
    z-index: 30;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    animation: mascotFloat 5s ease-in-out infinite;
    pointer-events: none;
    background: transparent !important;
}

.peeking-mascot img {
    width: 100%;
    display: block;
    background: transparent !important;
    mix-blend-mode: multiply;
    /* Helps ensure transparent look on light theme */
}

.mascot-speech {
    position: absolute;
    top: -10px;
    right: -20px;
    background: white;
    color: #0f172a;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    white-space: nowrap;
    animation: speechGlow 3s ease-in-out infinite;
    z-index: 31;
}

@keyframes speechGlow {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px 30px;
    /* Increased row gap to 40px */
}

@keyframes mascotFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

/* Smart Interaction UI */
.smart-finder-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #f8fafc;
    border-radius: 20px 20px 0 0;
    margin-top: 60px;
    border: 1px solid #f1f5f9;
    border-bottom: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.interaction-pill {
    background: white;
    padding: 15px 15px 15px 30px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    margin-bottom: 2rem;
}

.pill-search {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #94a3b8;
    flex: 1;
}

.pill-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pill-actions i {
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
}

.pill-send {
    width: 45px;
    height: 45px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pill-send:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* Affiliate Scroll */
.affiliate-section {
    background: #0f172a;
    color: white;
    padding: 60px 0;
    overflow: hidden;
}

.affiliate-track {
    display: flex;
    gap: 50px;
    animation: scroll 20s linear infinite;
    align-items: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.affiliate-item img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.affiliate-item:hover img {
    opacity: 1;
}

/* Contact Form */
.contact-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 3rem;
    width: 40%;
}

.contact-form {
    padding: 3rem;
    width: 60%;
}

.form-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Feature Sections */
.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-box {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.05));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.feature-box:hover::before {
    transform: translateY(0);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Section */
.glass-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.glass-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15), transparent);
    z-index: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    z-index: 1;
}

/* Dashboard Mockup Styling */
.dashboard-mockup {
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.dashboard-header {
    background: #0f172a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.orange {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.dashboard-title {
    color: #64748b;
    font-size: 0.75rem;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-body {
    padding: 20px;
}

.chart-area {
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    width: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), transparent);
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out infinite alternate;
}

@keyframes growBar {
    from {
        transform: scaleY(0.8);
    }

    to {
        transform: scaleY(1);
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.metric-card small {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.metric-card .val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
}

.glass-tag {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(var(--primary-rgb), 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    padding: 8px 15px;
    border-radius: 12px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Background Particles */
.glass-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: moveCircle 15s linear infinite;
}

.glass-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: moveCircle 20s linear infinite reverse;
}

@keyframes moveCircle {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(100px, 100px);
    }

    50% {
        transform: translate(0, 200px);
    }

    75% {
        transform: translate(-100px, 100px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Grid Staggering */
.services-grid .service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: 0.4s;
}

.services-grid .service-card:nth-child(5) {
    transition-delay: 0.5s;
}

.services-grid .service-card:nth-child(6) {
    transition-delay: 0.6s;
}

/* High-Impact Growth UI */
.trust-pulse {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
}

.trust-pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.data-ticker {
    background: #0f172a;
    color: white;
    padding: 10px 0;
    font-size: 0.8rem;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-wrap {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.growth-meter-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badge System */
.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 2rem;
    }
}

/* Service Page Gadgets */
.benefit-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px -4px rgba(var(--primary-rgb), 0.4);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.step-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px -5px rgba(var(--primary-rgb), 0.5);
    border: 3px solid white;
}

.faq-card {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #64748b;
    font-size: 0.95rem;
    display: none;
}

.service-status-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* Results & Outcomes Cards (Premium White-on-Dark) */
.result-stat {
    background: white;
    padding: 3rem 2rem;
    border-radius: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.result-stat:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.result-stat .val {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.result-stat h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #0f172a !important;
    /* Explicitly dark text on white card */
}

.result-stat p {
    color: #64748b !important;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Flash Sale UI */
.flash-sale-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.sale-card {
    background: white;
    border-radius: 35px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.sale-card:hover {
    transform: scale(1.03);
}

.sale-badge {
    position: absolute;
    top: -15px;
    left: 25px;
    background: #ef4444;
    color: white;
    padding: 6px 18px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.5);
    }
}

.timer-display {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 1.5rem 0;
}

.time-unit {
    background: #f8fafc;
    width: 60px;
    padding: 10px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.time-val {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.time-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #15803d;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .growth-meter-container {
        display: none;
    }
}/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       E n h a n c e d   S e r v i c e s   S e c t i o n   U X  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
  
 / *   S e r v i c e s   G r i d   * /  
 . s e r v i c e s - g r i d   {  
     d i s p l a y :   g r i d ;  
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 2 0 p x ,   1 f r ) ) ;  
     g a p :   3 5 p x ;  
     m a r g i n - t o p :   6 0 p x ;  
 }  
  
 / *   S e r v i c e   C a r d   B a s e   * /  
 . n i x t i o - c a r d   {  
     b a c k g r o u n d :   w h i t e ;  
     b o r d e r - r a d i u s :   2 8 p x ;  
     p a d d i n g :   4 5 p x   3 5 p x ;  
     b o r d e r :   1 p x   s o l i d   v a r ( - - s l a t e - 1 0 0 ) ;  
     t r a n s i t i o n :   a l l   0 . 5 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ;  
     d i s p l a y :   f l e x ;  
     f l e x - d i r e c t i o n :   c o l u m n ;  
     h e i g h t :   1 0 0 % ;  
     p o s i t i o n :   r e l a t i v e ;  
     o v e r f l o w :   h i d d e n ;  
     b o x - s h a d o w :   0   8 p x   2 4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 4 ) ;  
 }  
  
 / *   G r a d i e n t   T o p   B o r d e r   ( H i d d e n   b y   d e f a u l t )   * /  
 . n i x t i o - c a r d : : b e f o r e   {  
     c o n t e n t :   " " ;  
     p o s i t i o n :   a b s o l u t e ;  
     t o p :   0 ;  
     l e f t :   0 ;  
     r i g h t :   0 ;  
     h e i g h t :   5 p x ;  
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   v a r ( - - p r i m a r y ) ,   v a r ( - - s e c o n d a r y ) ) ;  
     o p a c i t y :   0 ;  
     t r a n s i t i o n :   o p a c i t y   0 . 4 s   e a s e ;  
 }  
  
 / *   H o v e r   S t a t e   * /  
 . n i x t i o - c a r d : h o v e r   {  
     t r a n s f o r m :   t r a n s l a t e Y ( - 1 2 p x ) ;  
     b o x - s h a d o w :   0   2 5 p x   5 0 p x   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 1 2 ) ;  
     b o r d e r - c o l o r :   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 2 5 ) ;  
 }  
  
 . n i x t i o - c a r d : h o v e r : : b e f o r e   {  
     o p a c i t y :   1 ;  
 }  
  
 / *   I c o n   C o n t a i n e r   * /  
 . n i x t i o - i c o n   {  
     w i d t h :   7 5 p x ;  
     h e i g h t :   7 5 p x ;  
     b a c k g r o u n d :   l i n e a r - g r a d i e n t (  
         1 3 5 d e g ,  
         r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 0 8 ) ,  
         r g b a ( 2 3 6 ,   7 2 ,   1 5 3 ,   0 . 0 8 )  
     ) ;  
     b o r d e r - r a d i u s :   2 2 p x ;  
     d i s p l a y :   f l e x ;  
     a l i g n - i t e m s :   c e n t e r ;  
     j u s t i f y - c o n t e n t :   c e n t e r ;  
     f o n t - s i z e :   1 . 8 5 r e m ;  
     c o l o r :   v a r ( - - p r i m a r y ) ;  
     m a r g i n - b o t t o m :   2 8 p x ;  
     t r a n s i t i o n :   a l l   0 . 5 s   c u b i c - b e z i e r ( 0 . 6 8 ,   - 0 . 5 5 ,   0 . 2 6 5 ,   1 . 5 5 ) ;  
     p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . n i x t i o - i c o n : : a f t e r   {  
     c o n t e n t :   " " ;  
     p o s i t i o n :   a b s o l u t e ;  
     i n s e t :   - 3 p x ;  
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y ) ,   v a r ( - - s e c o n d a r y ) ) ;  
     b o r d e r - r a d i u s :   2 2 p x ;  
     o p a c i t y :   0 ;  
     z - i n d e x :   - 1 ;  
     t r a n s i t i o n :   o p a c i t y   0 . 4 s ;  
 }  
  
 . n i x t i o - c a r d : h o v e r   . n i x t i o - i c o n   {  
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y ) ,   v a r ( - - s e c o n d a r y ) ) ;  
     c o l o r :   w h i t e ;  
     t r a n s f o r m :   r o t a t e ( 3 6 0 d e g )   s c a l e ( 1 . 0 8 ) ;  
     b o x - s h a d o w :   0   1 2 p x   2 8 p x   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 2 5 ) ;  
 }  
  
 . n i x t i o - c a r d : h o v e r   . n i x t i o - i c o n : : a f t e r   {  
     o p a c i t y :   0 . 1 5 ;  
 }  
  
 / *   C a r d   C o n t e n t   * /  
 . n i x t i o - c a r d - c o n t e n t   {  
     f l e x - g r o w :   1 ;  
 }  
  
 . n i x t i o - c a r d - t i t l e   {  
     f o n t - s i z e :   1 . 6 r e m ;  
     f o n t - w e i g h t :   8 0 0 ;  
     m a r g i n - b o t t o m :   1 6 p x ;  
     c o l o r :   v a r ( - - s l a t e - 9 0 0 ) ;  
     l i n e - h e i g h t :   1 . 3 ;  
     l e t t e r - s p a c i n g :   - 0 . 0 2 e m ;  
 }  
  
 . n i x t i o - d e s c   {  
     c o l o r :   v a r ( - - s l a t e - 5 0 0 ) ;  
     m a r g i n - b o t t o m :   3 2 p x ;  
     l i n e - h e i g h t :   1 . 7 ;  
     f o n t - s i z e :   1 . 0 5 r e m ;  
 }  
  
 / *   C a r d   A c t i o n s   * /  
 . n i x t i o - c a r d - a c t i o n s   {  
     d i s p l a y :   f l e x ;  
     g a p :   1 2 p x ;  
     m a r g i n - t o p :   a u t o ;  
 }  
  
 / *   P r i m a r y   B u t t o n   -   G e t   a   Q u o t e   * /  
 . n i x t i o - b t n - q u o t e   {  
     f l e x :   1 ;  
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y ) ,   # 6 3 6 6 f 1 ) ;  
     c o l o r :   w h i t e   ! i m p o r t a n t ;  
     t e x t - a l i g n :   c e n t e r ;  
     p a d d i n g :   1 4 p x   2 0 p x ;  
     b o r d e r - r a d i u s :   1 4 p x ;  
     f o n t - w e i g h t :   7 0 0 ;  
     f o n t - s i z e :   0 . 9 5 r e m ;  
     t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ;  
     d i s p l a y :   f l e x ;  
     a l i g n - i t e m s :   c e n t e r ;  
     j u s t i f y - c o n t e n t :   c e n t e r ;  
     g a p :   8 p x ;  
     b o x - s h a d o w :   0   6 p x   1 6 p x   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 2 5 ) ;  
     p o s i t i o n :   r e l a t i v e ;  
     o v e r f l o w :   h i d d e n ;  
 }  
  
 . n i x t i o - b t n - q u o t e : : b e f o r e   {  
     c o n t e n t :   " " ;  
     p o s i t i o n :   a b s o l u t e ;  
     t o p :   0 ;  
     l e f t :   - 1 0 0 % ;  
     w i d t h :   1 0 0 % ;  
     h e i g h t :   1 0 0 % ;  
     b a c k g r o u n d :   l i n e a r - g r a d i e n t (  
         9 0 d e g ,  
         t r a n s p a r e n t ,  
         r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ,  
         t r a n s p a r e n t  
     ) ;  
     t r a n s i t i o n :   l e f t   0 . 5 s ;  
 }  
  
 . n i x t i o - b t n - q u o t e : h o v e r : : b e f o r e   {  
     l e f t :   1 0 0 % ;  
 }  
  
 . n i x t i o - b t n - q u o t e : h o v e r   {  
     t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;  
     b o x - s h a d o w :   0   1 0 p x   2 4 p x   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 3 5 ) ;  
 }  
  
 . n i x t i o - b t n - q u o t e   i   {  
     f o n t - s i z e :   0 . 7 5 r e m ;  
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s ;  
 }  
  
 . n i x t i o - b t n - q u o t e : h o v e r   i   {  
     t r a n s f o r m :   t r a n s l a t e X ( 4 p x ) ;  
 }  
  
 / *   S e c o n d a r y   B u t t o n   -   D e t a i l s   * /  
 . n i x t i o - b t n - i n f o   {  
     f l e x :   0 . 8 ;  
     b a c k g r o u n d :   w h i t e ;  
     c o l o r :   v a r ( - - s l a t e - 6 0 0 )   ! i m p o r t a n t ;  
     b o r d e r :   2 p x   s o l i d   v a r ( - - s l a t e - 2 0 0 ) ;  
     t e x t - a l i g n :   c e n t e r ;  
     p a d d i n g :   1 4 p x   1 8 p x ;  
     b o r d e r - r a d i u s :   1 4 p x ;  
     f o n t - w e i g h t :   6 0 0 ;  
     f o n t - s i z e :   0 . 9 5 r e m ;  
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . n i x t i o - b t n - i n f o : h o v e r   {  
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;  
     c o l o r :   v a r ( - - p r i m a r y )   ! i m p o r t a n t ;  
     b a c k g r o u n d :   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 0 4 ) ;  
     t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
 }  
  
 / *   M o b i l e   R e s p o n s i v e n e s s   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
     . s e r v i c e s - g r i d   {  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         g a p :   2 5 p x ;  
     }  
  
     . n i x t i o - c a r d   {  
         p a d d i n g :   3 5 p x   2 8 p x ;  
     }  
  
     . n i x t i o - c a r d - a c t i o n s   {  
         f l e x - d i r e c t i o n :   c o l u m n ;  
     }  
  
     . n i x t i o - b t n - i n f o   {  
         f l e x :   1 ;  
     }  
 }  
  
 / *   A n i m a t i o n   f o r   c a r d s   o n   s c r o l l   * /  
 @ k e y f r a m e s   f a d e I n U p   {  
     f r o m   {  
         o p a c i t y :   0 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ;  
     }  
     t o   {  
         o p a c i t y :   1 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
     }  
 }  
  
 . a n i m a t e - u p   {  
     a n i m a t i o n :   f a d e I n U p   0 . 6 s   e a s e - o u t   f o r w a r d s ;  
 }  
  
 . a n i m a t e - u p : n t h - c h i l d ( 1 )   {  
     a n i m a t i o n - d e l a y :   0 . 1 s ;  
 }  
 . a n i m a t e - u p : n t h - c h i l d ( 2 )   {  
     a n i m a t i o n - d e l a y :   0 . 2 s ;  
 }  
 . a n i m a t e - u p : n t h - c h i l d ( 3 )   {  
     a n i m a t i o n - d e l a y :   0 . 3 s ;  
 }  
 