/* ================================
   SERVICES PAGE STYLES
   Hero Toolkit, Hologram Cards & Blueprint CTA
================================ */

/* ================================
   1. HERO SECTION - DIGITAL TOOLKIT
   Features: Floating 3D Tools + Glassmorphism Card
================================ */
.services-hero-toolkit {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Subtle Grid Pattern Overlay */
.services-hero-toolkit::before {
    content: '';
    position: absolute;
    inset: 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: 40px 40px;
    pointer-events: none;
}

/* Toolkit Visual Container */
.toolkit-visual {
    position: relative;
    height: 480px;
    perspective: 1200px;
}

.floating-tools-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* Floating Tool Icons - Orbiting Around Card */
.floating-tool {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform-style: preserve-3d;
    animation: floatTool 5s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 5;
}

.floating-tool:hover {
    transform: scale(1.15) translateZ(20px) !important;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Tool Positions - Spread around the card edges */
.floating-tool.tool-pen {
    top: 2%;
    left: -5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation-delay: 0s;
}

.floating-tool.tool-code {
    top: -4%;
    right: 8%;
    background: linear-gradient(135deg, #2a2a2a 0%, #444 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation-delay: 0.8s;
}

.floating-tool.tool-megaphone {
    bottom: 18%;
    left: -8%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation-delay: 1.6s;
}

.floating-tool.tool-palette {
    bottom: 2%;
    right: 0%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    animation-delay: 2.4s;
}

.floating-tool.tool-chart {
    top: 38%;
    right: -8%;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    animation-delay: 3.2s;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Float Animation - Gentle bob */
@keyframes floatTool {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(2deg);
    }

    66% {
        transform: translateY(-6px) rotate(-2deg);
    }
}

/* Glassmorphism Card - Dark Holographic Dashboard */
.glass-toolkit-card {
    position: relative;
    width: 340px;
    padding: 0;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(41, 98, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    animation: cardTilt 6s ease-in-out infinite;
    overflow: hidden;
    z-index: 3;
}

.glass-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43e97b;
    box-shadow: 0 0 10px rgba(67, 233, 123, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
}

.glass-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-card-content {
    padding: 20px 24px 24px;
}

/* Metric Row */
.glass-metric-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.glass-metric {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
}

.glass-metric-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Bars */
.glass-progress-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.glass-progress-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInGlow 0.5s ease forwards;
}

.glass-progress-item:nth-child(1) {
    animation-delay: 0.3s;
}

.glass-progress-item:nth-child(2) {
    animation-delay: 0.5s;
}

.glass-progress-item:nth-child(3) {
    animation-delay: 0.7s;
}

.glass-progress-item:nth-child(4) {
    animation-delay: 0.9s;
}

.glass-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.glass-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.glass-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f5576c, #ff6b6b);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(245, 87, 108, 0.4);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-progress-fill.fill-blue {
    background: linear-gradient(90deg, #2962FF, #448aff);
    box-shadow: 0 0 10px rgba(41, 98, 255, 0.4);
}

.glass-progress-fill.fill-green {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
    box-shadow: 0 0 10px rgba(67, 233, 123, 0.4);
}

.glass-progress-fill.fill-purple {
    background: linear-gradient(90deg, #667eea, #764ba2);
    box-shadow: 0 0 10px rgba(118, 75, 162, 0.4);
}

@keyframes cardTilt {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    }

    50% {
        transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
    }
}

@keyframes slideInGlow {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(67, 233, 123, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(67, 233, 123, 0.8), 0 0 35px rgba(67, 233, 123, 0.4);
    }
}

/* Toolkit Content (Left Side) */
.toolkit-content {
    padding-right: 40px;
}

.toolkit-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}

.toolkit-title .text-accent {
    color: #2962FF;
    position: relative;
}

.toolkit-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 35px;
}

/* CTA Button */
.btn-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    color: #141414;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid #FFFFFF;
}

.btn-services-cta:hover {
    background: transparent;
    color: #FFFFFF;
    transform: translateX(5px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.btn-services-cta i {
    transition: transform 0.3s ease;
}

.btn-services-cta:hover i {
    transform: translateX(5px);
}

/* ================================
   2. SERVICES GRID SECTION — Light Mode + Illustrations
   Scoped under #services-section for zero bleed-out
================================ */
#services-section.services-grid-section {
    background: #FFFFFF;
    padding: 100px 0;
}

#services-section .section-title {
    color: #141414 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#services-section .section-subtitle {
    color: #666666 !important;
}

/* Flexbox Layout */
#services-section .services-hologram-grid {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: stretch;
}

#services-section .service-hologram-item {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    transition: flex 0.5s ease-in-out;
}

#services-section .service-hologram-item:hover {
    flex: 1.8;
}

/* Card Base */
#services-section .service-hologram-card {
    background: #F0F4FF;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border: 1px solid #E0E6F0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: flex-start;
}

/* Hover glow */
#services-section .service-hologram-item:hover .service-hologram-card {
    border-color: #B8CCFF;
    box-shadow: 0 8px 30px rgba(41, 98, 255, 0.1);
}

/* Illustration Image */
#services-section .svc-illustration-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #E8EEFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#services-section .svc-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

#services-section .service-hologram-item:hover .svc-illustration {
    transform: scale(1.05);
}

/* Title — always visible */
#services-section .svc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #141414;
    transition: color 0.4s ease;
    text-align: center;
    flex-shrink: 0;
}

/* Details container — hidden on desktop by default */
#services-section .svc-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
    text-align: center;
}

/* Show details on hover */
#services-section .service-hologram-item:hover .svc-details {
    max-height: 100px;
    opacity: 1;
}

#services-section .svc-summary {
    font-size: 0.88rem;
    color: #555555;
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

/* Toggle Arrow */
#services-section .hologram-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E0E6F0;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 8px auto 0;
}

#services-section .hologram-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

/* Expandable Body */
#services-section .hologram-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
    padding: 0 16px;
    opacity: 0;
    background: transparent;
    width: 100%;
}

#services-section .hologram-description {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 16px;
}

#services-section .hologram-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

#services-section .hologram-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #444444;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.3s ease;
    transition-delay: calc(var(--feature-index) * 0.05s);
}

#services-section .hologram-feature-item i {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: rgba(41, 98, 255, 0.12);
    color: #2962FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    flex-shrink: 0;
}

/* ================================
   DESKTOP: Hover Expand + Body Reveal
================================ */
@media (min-width: 992px) {
    #services-section .hologram-toggle {
        display: none !important;
    }

    /* Expand hologram body on hover */
    #services-section .service-hologram-item:hover .hologram-body {
        max-height: 400px;
        padding: 0 16px 20px;
        opacity: 1;
    }

    #services-section .service-hologram-item:hover .hologram-feature-item {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   MOBILE: Grid + Accordion (≤991px)
================================ */
@media (max-width: 991.98px) {
    #services-section .services-hologram-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    #services-section .service-hologram-item {
        flex: unset;
        min-width: unset;
        overflow: visible;
        transition: none;
    }

    #services-section .service-hologram-item:hover {
        flex: unset;
    }

    #services-section .service-hologram-card {
        border-radius: 14px;
        padding: 16px;
    }

    /* Always show summary on mobile */
    #services-section .svc-details {
        max-height: none;
        opacity: 1;
        overflow: visible;
    }

    /* Show Toggle Arrow */
    #services-section .hologram-toggle {
        display: flex;
    }

    #services-section .svc-title {
        font-size: 0.95rem;
    }

    #services-section .svc-summary {
        font-size: 0.82rem;
    }

    #services-section .hologram-body {
        padding: 0 12px;
    }

    #services-section .hologram-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    #services-section .hologram-feature-item {
        font-size: 0.82rem;
    }

    /* Expanded State (via JS toggle) */
    #services-section .service-hologram-card.expanded {
        border-color: #B8CCFF;
        box-shadow: 0 6px 20px rgba(41, 98, 255, 0.1);
    }

    #services-section .service-hologram-card.expanded .hologram-toggle {
        background: rgba(41, 98, 255, 0.15);
        color: #2962FF;
    }

    #services-section .service-hologram-card.expanded .hologram-toggle i {
        transform: rotate(180deg);
    }

    #services-section .service-hologram-card.expanded .hologram-body {
        max-height: 500px;
        padding: 0 12px 20px;
        opacity: 1;
    }

    #services-section .service-hologram-card.expanded .hologram-feature-item {
        opacity: 1;
        transform: translateX(0);
        color: #333333;
    }
}

/* Small mobile: Keep 2-column grid */
@media (max-width: 575.98px) {
    #services-section .services-hologram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    #services-section .service-hologram-card {
        padding: 12px;
    }

    #services-section .svc-illustration-wrap {
        margin-bottom: 8px;
    }

    #services-section .svc-title {
        font-size: 0.82rem;
    }

    #services-section .svc-summary {
        font-size: 0.72rem;
    }
}

/* Toolkit Hero — Tablet Breakpoint */
@media (max-width: 991.98px) {
    .services-hero-toolkit {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .toolkit-visual {
        height: 380px;
        margin-bottom: 30px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .floating-tool {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        border-radius: 16px;
    }

    .floating-tool.tool-pen {
        top: 0%;
        left: 0%;
    }

    .floating-tool.tool-code {
        top: -2%;
        right: 12%;
    }

    .floating-tool.tool-megaphone {
        bottom: 15%;
        left: -2%;
    }

    .floating-tool.tool-palette {
        bottom: 0%;
        right: 5%;
    }

    .floating-tool.tool-chart {
        top: 40%;
        right: -2%;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .glass-toolkit-card {
        width: 280px;
        transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    }

    .glass-metric-value {
        font-size: 1.3rem;
    }

    .toolkit-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .toolkit-content .toolkit-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .toolkit-title {
        font-size: 2.2rem;
    }

    .btn-services-cta {
        margin: 0 auto;
    }

    .toolkit-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .services-grid-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .toolkit-visual {
        height: 340px;
        max-width: 360px;
    }

    .floating-tool {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 14px;
    }

    .floating-tool.tool-pen {
        top: 2%;
        left: 2%;
    }

    .floating-tool.tool-code {
        top: 0%;
        right: 8%;
    }

    .floating-tool.tool-megaphone {
        bottom: 12%;
        left: 0%;
    }

    .floating-tool.tool-palette {
        bottom: 2%;
        right: 2%;
    }

    .floating-tool.tool-chart {
        top: 42%;
        right: 0%;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .glass-toolkit-card {
        width: 240px;
        border-radius: 16px;
    }

    .glass-card-header {
        padding: 12px 18px;
    }

    .glass-card-content {
        padding: 14px 18px 18px;
    }

    .glass-metric-value {
        font-size: 1.2rem;
    }

    .glass-metric {
        padding: 8px;
        border-radius: 10px;
    }

    .glass-progress-head {
        font-size: 0.75rem;
    }

    .glass-progress-bar {
        height: 5px;
    }
}

@media (max-width: 575.98px) {
    .services-hero-toolkit {
        padding: 110px 0 50px;
    }

    .toolkit-visual {
        height: 300px;
        max-width: 320px;
    }

    .floating-tool {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .floating-tool.tool-pen {
        top: 4%;
        left: 3%;
    }

    .floating-tool.tool-code {
        top: 2%;
        right: 5%;
        width: 42px;
        height: 42px;
    }

    .floating-tool.tool-megaphone {
        bottom: 10%;
        left: 2%;
    }

    .floating-tool.tool-palette {
        bottom: 3%;
        right: 3%;
    }

    .floating-tool.tool-chart {
        top: 45%;
        right: 0%;
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .glass-toolkit-card {
        width: 200px;
        border-radius: 14px;
    }

    .glass-card-header {
        padding: 10px 14px;
        gap: 8px;
    }

    .glass-card-label {
        font-size: 0.65rem;
    }

    .glass-status-dot {
        width: 6px;
        height: 6px;
    }

    .glass-card-content {
        padding: 12px 14px 14px;
    }

    .glass-metric-row {
        gap: 10px;
        margin-bottom: 16px;
    }

    .glass-metric {
        padding: 6px;
        border-radius: 8px;
    }

    .glass-metric-value {
        font-size: 1rem;
    }

    .glass-metric-label {
        font-size: 0.6rem;
    }

    .glass-progress-section {
        gap: 10px;
    }

    .glass-progress-head {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

    .glass-progress-bar {
        height: 4px;
    }

    .toolkit-title {
        font-size: 1.8rem;
    }

    .toolkit-subtitle {
        font-size: 0.95rem;
    }

    .hologram-features {
        grid-template-columns: 1fr;
    }
}

/* ================================
   3. CTA SECTION - THE BLUEPRINT
   Dark background with wireframe overlay
================================ */
.cta-blueprint-section {
    background: linear-gradient(180deg, #0a0f1a 0%, #0d1426 50%, #0a0f1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Blueprint Grid Background */
.blueprint-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.blueprint-lines {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.blueprint-lines svg {
    width: 100%;
    height: 100%;
}

/* Blueprint Content */
.blueprint-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.blueprint-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.blueprint-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Build Your Package Button */
.btn-build-package {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    color: var(--black);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 0 0 rgba(255, 255, 255, 0.4),
        0 10px 40px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-build-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-build-package:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(255, 255, 255, 0.3);
    color: var(--black);
}

.btn-build-package:hover::before {
    left: 100%;
}

.btn-build-package .btn-icon {
    width: 35px;
    height: 35px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-build-package:hover .btn-icon {
    transform: translateX(5px);
}

/* Mobile Blueprint */
@media (max-width: 767.98px) {
    .cta-blueprint-section {
        padding: 70px 20px;
    }

    .blueprint-title {
        font-size: 1.8rem;
    }

    .blueprint-text {
        font-size: 1rem;
    }

    .btn-build-package {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .btn-build-package .btn-icon {
        width: 30px;
        height: 30px;
    }

    .blueprint-grid {
        background-size: 30px 30px;
    }
}