/* Z-Health Promotion Page Styling */

:root {
    --z-bg: #0a0e17;
    --z-card-bg: rgba(255, 255, 255, 0.05);
    --z-primary: #4fd1c5;
    --z-secondary: #63b3ed;
    --z-accent: #f56565;
    --z-text: #e2e8f0;
    --z-text-muted: #a0aec0;
    --z-border: rgba(255, 255, 255, 0.1);
}

.z-body {
    background-color: var(--z-bg);
    color: var(--z-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: hidden;
}

.z-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.z-hero {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(79, 209, 197, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.z-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--z-border);
    transition: all 0.3s ease;
}

.z-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(79, 209, 197, 0.2);
}

.z-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--z-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--z-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-badge {
    margin-top: 50px;
}

.z-hero-actions {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.z-hero-actions a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.4) !important;
}

/* Responsive for Hero Section */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .z-hero-actions {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }

    .z-hero-actions a {
        margin-left: 0 !important;
    }
}

/* Feature Sections */
.z-section {
    padding: 80px 0;
}

.z-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--z-primary);
}

.z-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--z-text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.z-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.z-highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--z-primary);
    box-shadow: 0 15px 40px rgba(79, 209, 197, 0.2);
}

.z-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--z-primary), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.z-highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 209, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.highlight-icon span {
    font-size: 1.8rem;
    color: var(--z-primary);
}

.z-highlight-card:hover .highlight-icon {
    background: var(--z-primary);
    transform: scale(1.1);
}

.z-highlight-card:hover .highlight-icon span {
    color: #121212;
}

.z-highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.z-highlight-card p {
    color: var(--z-text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.highlight-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--z-text-muted);
}

.feature-item span {
    color: var(--z-primary);
    margin-right: 10px;
    font-size: 1rem;
}

/* Responsive for Highlights Section */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .z-highlight-card {
        padding: 30px 25px;
    }
}

/* Indicators Section */
.z-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.z-indicator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.z-indicator-card:hover {
    transform: translateY(-3px);
    border-color: var(--z-primary);
    box-shadow: 0 10px 25px rgba(79, 209, 197, 0.2);
}

.indicator-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.indicator-icon {
    font-size: 2.2rem;
    display: block;
}

/* Progress Ring */
.indicator-progress {
    position: relative;
    width: 60px;
    height: 60px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke-dasharray: 170;
    stroke-dashoffset: 0;
    animation: progress-ring-animation 2s ease-in-out infinite;
}

@keyframes progress-ring-animation {
    0% {
        stroke-dashoffset: 170;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 170;
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--z-primary);
}

/* Bar Chart */
.indicator-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    width: 80px;
    height: 60px;
    padding: 5px 0;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--z-primary), rgba(79, 209, 197, 0.3));
    border-radius: 2px 2px 0 0;
    animation: bar-animation 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) {
    animation-delay: 0s;
}

.chart-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.chart-bar:nth-child(3) {
    animation-delay: 0.4s;
}

.chart-bar:nth-child(4) {
    animation-delay: 0.6s;
}

.chart-bar:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes bar-animation {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.1);
    }
}

/* Breathing Circle */
.breathing-circle {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--z-primary), rgba(79, 209, 197, 0.2));
    border-radius: 50%;
    animation: breathing-animation 3s ease-in-out infinite;
}

@keyframes breathing-animation {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Brain Wave */
.brain-wave {
    width: 80px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--z-primary), transparent);
    animation: wave-animation 2s ease-in-out infinite;
}

@keyframes wave-animation {

    0%,
    100% {
        transform: scaleY(1);
    }

    25% {
        transform: scaleY(3);
    }

    50% {
        transform: scaleY(1);
    }

    75% {
        transform: scaleY(2);
    }
}

/* Sleep Stages */
.sleep-stages {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.stage-dot {
    width: 10px;
    height: 10px;
    background: var(--z-primary);
    border-radius: 50%;
    animation: sleep-animation 2s ease-in-out infinite;
}

.stage-dot:nth-child(1) {
    animation-delay: 0s;
}

.stage-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.stage-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.stage-dot:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes sleep-animation {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Eye Blink */
.eye-blink {
    width: 40px;
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-lid {
    width: 30px;
    height: 3px;
    background: var(--z-primary);
    border-radius: 2px;
    animation: blink-animation 3s ease-in-out infinite;
}

@keyframes blink-animation {

    0%,
    90%,
    100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(5);
    }
}

/* Posture Visual */
.posture-visual {
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spine-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--z-primary), rgba(79, 209, 197, 0.3));
    border-radius: 2px;
    animation: posture-animation 3s ease-in-out infinite;
}

@keyframes posture-animation {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

/* Age Progress */
.age-progress {
    width: 80px;
    height: 8px;
}

.age-bar {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.age-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, var(--z-primary), rgba(79, 209, 197, 0.6));
    border-radius: 4px;
    animation: age-fill-animation 2s ease-in-out infinite;
}

@keyframes age-fill-animation {

    0%,
    100% {
        width: 50%;
    }

    50% {
        width: 80%;
    }
}

.indicator-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.indicator-desc {
    font-size: 0.9rem;
    color: var(--z-primary);
    font-weight: 300;
    display: block;
}

.indicators-cta,
.risks-cta {
    text-align: center;
    margin-top: 50px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--z-primary);
    color: #121212;
    box-shadow: 0 4px 15px rgba(79, 209, 197, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--z-primary);
    border: 2px solid var(--z-primary);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.4);
}

.btn-secondary:hover {
    background: var(--z-primary);
    color: #121212;
}

/* Risks Section */
.z-risks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.z-risk-tag {
    padding: 14px 22px;
    border-radius: 28px;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.z-risk-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.z-risk-tag:hover::before {
    left: 100%;
}

.z-risk-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Different risk type colors */
.risk-cardio {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.risk-bp {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.risk-metabolic {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.risk-respiratory {
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.3);
}

.risk-sleep {
    background: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
}

.risk-stress {
    background: rgba(244, 114, 182, 0.15);
    border-color: rgba(244, 114, 182, 0.3);
}

.risk-cognitive {
    background: rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
}

.risk-emotional {
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.risk-diabetes {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.risk-immunity {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.risk-fatigue {
    background: rgba(147, 197, 253, 0.15);
    border-color: rgba(147, 197, 253, 0.3);
}

.risk-posture {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.z-risk-level {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.risk-level-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.risk-level-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.z-level {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.z-level-green {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

.z-level-yellow {
    background: linear-gradient(135deg, #facc15, #eab308);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.z-level-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.z-level-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.risk-level-item span {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.risk-level-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* Usage Section */
.usage-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
    position: relative;
}

.usage-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 30px 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.usage-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.4);
    box-shadow: 0 15px 35px rgba(79, 209, 197, 0.15);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(79, 209, 197, 0.3);
    margin-bottom: 15px;
    line-height: 1;
}

.step-content {
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.step-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Step connector */
.usage-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(79, 209, 197, 0.3), rgba(79, 209, 197, 0.6), rgba(79, 209, 197, 0.3));
    margin: 50px 0;
    display: none;
}

/* Responsive design for usage flow */
@media (min-width: 900px) {
    .usage-connector {
        display: block;
    }
}

@media (max-width: 899px) {
    .usage-flow {
        flex-direction: column;
        align-items: center;
    }

    .usage-step {
        width: 100%;
        max-width: 400px;
    }
}

/* Responsive */
@media (max-width: 768px) {

    /* Hero Section */
    .z-hero {
        min-height: 70vh;
        padding: 80px 0 40px;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .z-hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .z-hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-image img {
        width: 90%;
        max-width: 300px;
    }

    /* Section Titles */
    .z-section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .z-section-subtitle {
        font-size: 0.95rem;
        padding: 0 20px;
    }

    /* Highlights Section */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Indicators Section */
    .z-indicators {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }

    .indicator-name {
        font-size: 0.95rem;
    }

    .indicator-desc {
        font-size: 0.8rem;
    }

    /* Risks Section */
    .z-risks {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .z-risk-level {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Usage Section */
    .usage-flow {
        padding: 0 10px;
    }

    .usage-step {
        padding: 25px 15px;
    }

    /* Buttons */
    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        min-width: 200px;
    }

    /* Containers */
    .z-container {
        padding: 0 20px;
    }

    /* CTAs */
    .indicators-cta,
    .risks-cta {
        padding: 0 20px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .z-hero h1 {
        font-size: 2rem;
    }

    .z-section-title {
        font-size: 1.6rem;
    }

    .z-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .indicator-visual {
        gap: 10px;
    }

    .indicator-icon {
        font-size: 1.8rem;
    }

    .indicator-chart {
        width: 60px;
        height: 50px;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .z-hero h1 {
        font-size: 3rem;
    }

    .hero-content-wrapper {
        gap: 40px;
    }

    .z-indicators {
        grid-template-columns: repeat(3, 1fr);
    }

    .z-risks {
        grid-template-columns: repeat(2, 1fr);
    }

    .z-risk-level {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Scroll Animation */
.z-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.z-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specs Section */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.specs-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.specs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.specs-card.recommended {
    border-color: rgba(79, 209, 197, 0.4);
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.05), rgba(255, 255, 255, 0.02));
}

.specs-card.recommended:hover {
    box-shadow: 0 15px 35px rgba(79, 209, 197, 0.15);
}

.specs-header {
    text-align: center;
    margin-bottom: 30px;
}

.specs-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.specs-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.specs-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 15px;
}

.specs-value {
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
    flex: 1;
}

/* Responsive for Specs Section */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .specs-card {
        padding: 25px 20px;
    }

    .specs-icon {
        font-size: 2.5rem;
    }

    .specs-title {
        font-size: 1.3rem;
    }

    .specs-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .specs-value {
        text-align: left;
    }
}