/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #111827;
   
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    position: relative;
    width: 100%;
}
h2 {
    margin-top: 0;
    color: #090a0a;
}
h2 {
    font-size: 25px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    padding: 0 0 25px 0;
    margin: 0;
}
form {
    display: flex;
    flex-direction: column;
}
form label {
    margin: 10px 0 5px;
}
form input, form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #fb993e;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/* Progress Bar */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #1f2937;
    z-index: 50;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #3b82f6, #a855f7, #14b8a6);
    transition: width 0.15s ease-out;
    width: 0%;
}
.popup {
	position: fixed;
	top: 60px;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 80%;
	background-color: #fff;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	overflow-y: auto;
	transition: right 0.3s ease-in-out;
	margin-right: 15px;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.popup {
		max-width: 100%;
		width: 95%;
		height: 80%;
		top: 50px;
	}
}

@media (max-width: 480px) {
	.popup {
		top: 100px;
		height: 65%;
	}
}


.popup-content {
	padding: 20px;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	color: #f20b0b;
}

.close-btn:hover {
	color: #ff4d4d;
	/* Light red color on hover */
	transform: scale(1.1);
	/* Slightly enlarge the button */
}

/* Step Indicator (Desktop only) */
.step-indicator {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: none;
}

@media (min-width: 1024px) {
    .step-indicator {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

.step-dot-wrapper {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dot-wrapper.active {
    transform: scale(1.1);
}

.step-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #6b7280;
    background-color: transparent;
    transition: all 0.3s ease;
}

.step-dot-wrapper.active .step-dot {
    background-color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.step-dot-wrapper:hover .step-dot {
    border-color: #d1d5db;
}

.step-tooltip {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1f2937;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.step-dot-wrapper:hover .step-tooltip {
    opacity: 1;
}

/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #1f2937;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 32px;
    width: 100%;
    max-width: 448px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: white;
}

.modal-description {
    color: #d1d5db;
    margin-bottom: 24px;
    font-size: 14px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    background-color: #374151;
    border: 1px solid #4b5563;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    font-size: 16px;
}

.btn-submit:hover {
    background: linear-gradient(to right, #1d4ed8, #7e22ce);
    transform: scale(1.01);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.9), rgba(30, 58, 138, 0.8), rgba(88, 28, 135, 0.9));
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 16px 24px;
    max-width: 1152px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    padding: 8px 16px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(to right, #60a5fa, #a78bfa, #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 64px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 96px;
    }
}

.hero-description {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 20px;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}
.btn--orange-bg {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: white;
    border: none;
}
.btn {
    padding: 12px 40px;
    margin: 0 20px 0 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
     text-decoration: none;
}
.btn-primary {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
   
}

.btn-primary:hover {
    background: linear-gradient(to right, #1d4ed8, #7e22ce);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    border: 1px solid #4b5563;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-secondary:hover {
    border-color: #9ca3af;
    background-color: #1f2937;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 32px;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    color: #60a5fa;
}

@media (min-width: 640px) {
    .scroll-indicator svg {
        width: 48px;
        height: 48px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Manufacturing Steps */
.step-section {
    position: relative;
    overflow: hidden;
    padding: 48px 0;
    min-height: 60vh;
}

@media (min-width: 768px) {
    .step-section {
        padding: 80px 0;
        min-height: 75vh;
    }
}

.step-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 1s ease;
}

.step-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.95));
}

.step-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .step-container {
        padding: 0 24px;
    }
}

.step-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .step-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
    }
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 1s ease;
    opacity: 0;
    transform: translateY(80px);
}

.step-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-text.order-1 {
    order: 1;
}

.step-text.order-2 {
    order: 2;
}

@media (min-width: 1024px) {
    .step-text {
        gap: 32px;
    }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .step-header {
        gap: 16px;
    }
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

@media (min-width: 640px) {
    .step-icon {
        width: 64px;
        height: 64px;
        border-radius: 24px;
    }
}

@media (min-width: 768px) {
    .step-icon {
        width: 80px;
        height: 80px;
        border-radius: 32px;
    }
}

.step-icon:hover {
    transform: scale(1.1) rotate(6deg);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 640px) {
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 768px) {
    .step-icon svg {
        width: 48px;
        height: 48px;
    }
}

.step-meta {
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .step-number {
        font-size: 14px;
    }
}

.step-category {
    font-size: 14px;
    font-weight: 500;
    color: #60a5fa;
}

@media (min-width: 640px) {
    .step-category {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .step-category {
        font-size: 18px;
    }
}

.step-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .step-title {
        font-size: 40px;
    }
}

@media (min-width: 768px) {
    .step-title {
        font-size: 48px;
    }
}

.step-description {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .step-description {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .step-description {
        font-size: 20px;
    }
}

.step-detailed {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .step-detailed {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .step-detailed {
        font-size: 18px;
    }
}

.step-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

@media (min-width: 640px) {
    .step-stats {
        gap: 16px;
        margin-top: 32px;
    }
}

@media (min-width: 768px) {
    .step-stats {
        gap: 24px;
    }
}

.stat-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(75, 85, 99, 0.5);
    text-align: center;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .stat-card {
        border-radius: 12px;
        padding: 16px;
    }
}

@media (min-width: 768px) {
    .stat-card {
        border-radius: 16px;
        padding: 24px;
    }
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-card-value {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

@media (min-width: 640px) {
    .stat-card-value {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .stat-card-value {
        font-size: 24px;
    }
}

.stat-card-label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .stat-card-label {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .stat-card-label {
        font-size: 14px;
    }
}

.step-image-wrapper {
    width: 100%;
    transition: all 1s ease;
    transition-delay: 0.3s;
    opacity: 0;
    transform: translateY(80px);
}

.step-image-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-image-wrapper.order-1 {
    order: 1;
}

.step-image-wrapper.order-2 {
    order: 2;
}

.step-image-container {
    position: relative;
}

.step-image-card {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.7s ease;
    position: relative;
}

@media (min-width: 768px) {
    .step-image-card {
        min-height: 320px;
        border-radius: 24px;
    }
}

@media (min-width: 1024px) {
    .step-image-card {
        height: 320px;
        aspect-ratio: auto;
    }
}

@media (min-width: 1280px) {
    .step-image-card {
        height: 384px;
    }
}

.step-image-card:hover {
    transform: scale(1.05) rotate(1deg);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.step-image-card:hover .step-image {
    opacity: 0.9;
}

.step-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

.step-image-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

@media (min-width: 640px) {
    .step-image-overlay {
        bottom: 24px;
        left: 24px;
        right: 24px;
    }
}

.step-image-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.step-image-title {
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 640px) {
    .step-image-title {
        font-size: 18px;
    }
}

.step-image-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

@media (min-width: 640px) {
    .step-image-subtitle {
        font-size: 14px;
    }
}

.step-image-icon {
    opacity: 0.6;
}

.step-image-icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 640px) {
    .step-image-icon svg {
        width: 32px;
        height: 32px;
    }
}

.step-decoration-1 {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 64px;
    height: 64px;
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 2s infinite;
}

@media (min-width: 640px) {
    .step-decoration-1 {
        top: -24px;
        right: -24px;
        width: 96px;
        height: 96px;
    }
}

.step-decoration-2 {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background-color: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

@media (min-width: 640px) {
    .step-decoration-2 {
        bottom: -24px;
        left: -24px;
        width: 128px;
        height: 128px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Gradient Colors */
.gradient-blue {
    background: linear-gradient(to bottom right, #2563eb, #1e40af);
}

.gradient-purple {
    background: linear-gradient(to bottom right, #9333ea, #6b21a8);
}

.gradient-green {
    background: linear-gradient(to bottom right, #16a34a, #15803d);
}

.gradient-red {
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
}

.gradient-orange {
    background: linear-gradient(to bottom right, #ea580c, #c2410c);
}

.gradient-pink {
    background: linear-gradient(to bottom right, #db2777, #be185d);
}

.gradient-yellow {
    background: linear-gradient(to bottom right, #ca8a04, #a16207);
}

.gradient-indigo {
    background: linear-gradient(to bottom right, #4f46e5, #4338ca);
}

.gradient-teal {
    background: linear-gradient(to bottom right, #0d9488, #0f766e);
}

/* Footer */
.footer-section {
    padding: 64px 0;
    background: linear-gradient(to bottom, #111827, #000000);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .footer-section {
        padding: 80px 0;
    }
}

@media (min-width: 768px) {
    .footer-section {
        padding: 128px 0;
    }
}

.footer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .footer-content {
        padding: 0 24px;
    }
}

.footer-header {
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .footer-header {
        margin-bottom: 48px;
    }
}

.footer-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(to right, #60a5fa, #a78bfa, #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .footer-title {
        font-size: 48px;
    }
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 64px;
    }
}

.footer-description {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .footer-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .footer-description {
        font-size: 20px;
    }
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 1152px;
    margin: 0 auto 32px;
}

@media (min-width: 640px) {
    .footer-stats {
        gap: 16px;
        margin-bottom: 48px;
    }
}

@media (min-width: 768px) {
    .footer-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.footer-stat-card {
    background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(75, 85, 99, 0.5);
    text-align: center;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .footer-stat-card {
        border-radius: 12px;
        padding: 16px;
    }
}

@media (min-width: 768px) {
    .footer-stat-card {
        border-radius: 24px;
        padding: 32px;
    }
}

.footer-stat-card:hover {
    transform: scale(1.05);
}

.footer-stat-card.blue:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.footer-stat-card.green:hover {
    border-color: rgba(34, 197, 94, 0.5);
}

.footer-stat-card.purple:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.footer-stat-card.teal:hover {
    border-color: rgba(20, 184, 166, 0.5);
}

.stat-value {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 4px;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 32px;
    }
}

.footer-stat-card.blue .stat-value {
    color: #60a5fa;
}

.footer-stat-card.green .stat-value {
    color: #4ade80;
}

.footer-stat-card.purple .stat-value {
    color: #a78bfa;
}

.footer-stat-card.teal .stat-value {
    color: #5eead4;
}

.stat-label {
    font-size: 12px;
    color: #d1d5db;
    font-weight: 500;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 16px;
    }
}

.stat-sublabel {
    font-size: 10px;
    color: #6b7280;
    margin-top: 4px;
}

@media (min-width: 640px) {
    .stat-sublabel {
        font-size: 12px;
    }
}

.footer-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .footer-actions {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

.footer-actions .btn-primary,
.footer-actions .btn-secondary {
    width: 100%;
}

@media (min-width: 640px) {
    .footer-actions .btn-primary,
    .footer-actions .btn-secondary {
        width: auto;
    }
}
