/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (SOMA Light Theme)
   ========================================================================= */
:root {
    /* Colors */
    --color-bg-base: #ffffff;
    --color-bg-white: #ffffff;
    --color-bg-dark-slide: #f4f7f6;
    --color-bg-sage-slide: #eef3f1;
    
    --color-accent-coral: #ff5f38;
    --color-accent-coral-hover: #e04b25;
    
    --color-text-title: #111514;
    --color-text-body: #495451;
    --color-text-muted: #859691;
    
    --color-border-glass: rgba(255, 255, 255, 0.4);
    --color-border-dark: rgba(17, 21, 20, 0.08);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout details */
    --header-height: 90px;
    --container-max-width: 1240px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.custom-cursor {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(255, 95, 56, 0.4);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.custom-cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-accent-coral);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.custom-cursor.hover {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 95, 56, 0.08);
    border-color: var(--color-accent-coral);
}

/* ==========================================================================
   HEADER & NAVIGATION PILL
   ========================================================================== */
.main-header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-max-width);
    height: 70px;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border-glass);
    box-shadow: 0 10px 30px rgba(17, 21, 20, 0.03);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    top: 15px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 40px rgba(17, 21, 20, 0.06);
}

.header-container {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)) brightness(1.08);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 16px rgba(214,90,0,0.45));
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-body);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-accent-coral);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-title);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 15px;
}

/* Header Action Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    background-color: var(--color-text-title);
    color: var(--color-bg-white);
    transition: var(--transition-fast);
}

.btn-cta:hover {
    background-color: var(--color-accent-coral);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 95, 56, 0.25);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-title);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (Light, Fluid Layout)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* Glowing background blobs */
.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 56, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162, 192, 178, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--color-accent-coral);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-title);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-body);
    max-width: 520px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary-coral {
    padding: 1rem 2rem;
    border-radius: 100px;
    background-color: var(--color-accent-coral);
    color: var(--color-bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(255, 95, 56, 0.2);
}

.btn-primary-coral:hover {
    background-color: var(--color-accent-coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 95, 56, 0.3);
}

.btn-secondary-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-title);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-link i {
    transition: transform 0.3s;
}

.btn-secondary-link:hover {
    color: var(--color-accent-coral);
}

.btn-secondary-link:hover i {
    transform: translateX(6px);
}

/* Right layout image with rounded borders */
.hero-right {
    position: relative;
    width: 100%;
}

/* Wrapper that clips the image but allows hotspot popups to overflow */
.hero-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(17, 21, 20, 0.1);
    position: relative;
    overflow: visible; /* Hotspot popups must overflow outward */
}

/* The actual image is clipped inside its own element */
.hero-img-box > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    display: block;
}

/* Floating SOMA Style Widgets */
.floating-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border-glass);
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(17, 21, 20, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.widget-1 {
    top: 15%;
    left: -40px;
}

.widget-2 {
    bottom: 12%;
    right: -30px;
}

.widget-3 {
    top: 55%;
    left: -20px;
    flex-direction: column;
    align-items: stretch;
    width: 190px;
    gap: 0.5rem;
    padding: 1.25rem;
}

.widget-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 95, 56, 0.1);
    color: var(--color-accent-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.widget-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.widget-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-text-title);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-value .trend {
    font-size: 0.75rem;
    color: #00b050;
    font-weight: 500;
}

.widget-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.widget-bar-header .percentage {
    color: var(--color-text-title);
}

.widget-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(17, 21, 20, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.widget-bar .fill {
    height: 100%;
    background-color: var(--color-accent-coral);
    border-radius: 100px;
}

/* Scroll indicator mouse */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.scroll-indicator .mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--color-text-muted);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-indicator .wheel {
    width: 3px;
    height: 6px;
    background-color: var(--color-accent-coral);
    border-radius: 1.5px;
    animation: scrollWheel 2s infinite;
}

.scroll-indicator .scroll-text {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ==========================================================================
   PERFORMANCE CIRCLE SECTION
   ========================================================================== */
.performance-section {
    padding: 10rem 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border-dark);
}

.performance-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.performance-visual {
    display: flex;
    justify-content: center;
}

.circle-anim-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress-wrap {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 691.15; /* 2 * PI * r (r=110) */
    stroke-dashoffset: 691.15;
    transition: stroke-dashoffset 0.1s;
    stroke-linecap: round;
}

.progress-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.progress-text .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-title);
    line-height: 1;
}

.progress-text .label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    font-weight: 500;
    max-width: 140px;
}

.performance-text .section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-accent-coral);
    margin-bottom: 1rem;
    display: block;
}

.performance-text .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--color-text-title);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.performance-desc {
    font-size: 1.1rem;
    color: var(--color-text-body);
}

/* ==========================================================================
   HORIZONTAL SCROLL CARD TRACK (SOMA STYLE)
   ========================================================================== */
.features-scroll-section {
    position: relative;
    background-color: var(--color-bg-base);
    /* height set dynamically by JS to match horizontal scroll distance */
}

.sticky-features-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    width: 90%;
}

.features-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text-title);
    line-height: 1.2;
}

/* SOMA Style Tab Menu */
.features-tabs {
    display: flex;
    gap: 0.5rem;
    background-color: rgba(17, 21, 20, 0.04);
    padding: 0.35rem;
    border-radius: 100px;
}

.tab-btn {
    border: none;
    background: transparent;
    padding: 0.65rem 1.25rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-body);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background-color: var(--color-bg-white);
    color: var(--color-text-title);
    box-shadow: 0 4px 15px rgba(17, 21, 20, 0.05);
}

/* Sliding Cards Track */
.horizontal-features-track {
    display: flex;
    width: max-content;
    align-items: center;
    padding: 1rem 5% 1rem 5%;
    gap: 2rem;
}

.feature-card-slide {
    width: clamp(320px, 30vw, 420px);
    /* Taller portrait card: text on top, image on bottom */
    height: clamp(480px, 56vh, 600px);
    border-radius: 35px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(17, 21, 20, 0.07);
    flex-shrink: 0;
}

/* SOMA colorful slides colors */
.coral-slide { background-color: #ffede8; color: var(--color-text-title); }
.dark-slide   { background-color: var(--color-bg-dark-slide); color: var(--color-text-title); }
.sage-slide   { background-color: var(--color-bg-sage-slide); color: var(--color-text-title); }

/* Text block lives in top ~55% of the card */
.slide-content {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1.2rem;
    flex: 0 0 auto;
    z-index: 2;
    position: relative;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.feature-card-slide h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.feature-card-slide p {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.75;
    max-width: 280px;
}

/* Image occupies the bottom area of the card, fully contained */
.card-img {
    width: 100%;
    flex: 1 1 0;
    min-height: 0;
    object-fit: cover;
    display: block;
    border-radius: 0 0 35px 35px;
    transition: transform 0.6s ease;
    transform-origin: center bottom;
}

.feature-card-slide:hover .card-img {
    transform: scale(1.05);
}

/* ==========================================================================
   TECHNICAL QUALITY SECTION
   ========================================================================== */
.tech-section {
    padding: 10rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6rem;
    align-items: center;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-accent-coral);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-title);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.tech-description {
    font-size: 1.15rem;
    color: var(--color-text-body);
    margin-bottom: 3.5rem;
}

.tech-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-point {
    display: flex;
    gap: 1.8rem;
}

.point-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent-coral);
    line-height: 1;
}

.tech-point h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-title);
    margin-bottom: 0.5rem;
}

.tech-point p {
    color: var(--color-text-body);
    font-size: 0.95rem;
}

.tech-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(17, 21, 20, 0.08);
}

.tech-image-box img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    position: relative;
    padding: 10rem 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border-dark);
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 56, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-text-title);
    line-height: 1.15;
    margin-bottom: 3.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-link-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-text-title);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.contact-link-item i {
    color: var(--color-accent-coral);
    font-size: 1.1rem;
}

.contact-link-item:hover {
    color: var(--color-accent-coral);
}

/* Form Styles */
.clean-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.clean-form .form-group {
    position: relative;
}

.clean-form input,
.clean-form textarea,
.clean-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(17, 21, 20, 0.08);
    padding: 0.8rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-title);
    outline: none;
    transition: var(--transition-fast);
}

.clean-form select {
    cursor: pointer;
    appearance: none;
}

.clean-form select option {
    background-color: var(--color-bg-white);
    color: var(--color-text-title);
}

.clean-form label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    font-size: 1rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.clean-form select ~ label {
    top: 0.8rem;
}

/* Floating Label Animation */
.clean-form input:focus ~ label,
.clean-form input:not(:placeholder-shown) ~ label,
.clean-form textarea:focus ~ label,
.clean-form textarea:not(:placeholder-shown) ~ label {
    top: -1.2rem;
    font-size: 0.75rem;
    color: var(--color-accent-coral);
    font-weight: 600;
    letter-spacing: 1px;
}

.clean-form select:focus ~ .select-label,
.clean-form select:valid ~ .select-label {
    top: -1.2rem;
    font-size: 0.75rem;
    color: var(--color-accent-coral);
    font-weight: 600;
    letter-spacing: 1px;
}

.clean-form input:focus,
.clean-form textarea:focus,
.clean-form select:focus {
    border-bottom-color: var(--color-accent-coral);
}

.btn-form-submit {
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    background-color: var(--color-text-title);
    color: var(--color-bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
}

.btn-form-submit:hover {
    background-color: var(--color-accent-coral);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 95, 56, 0.2);
}

/* ==========================================================================
   FOOTER SECTION (SOMA card style with blurred backdrop)
   ========================================================================== */
.main-footer {
    padding: 6rem 0 3rem 0;
    background-color: var(--color-bg-base);
}

.footer-blur-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border-glass);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(17, 21, 20, 0.02);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(17, 21, 20, 0.06);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-title);
    letter-spacing: 1.5px;
}

.footer-lead {
    font-size: 1.05rem;
    color: var(--color-text-body);
    margin-top: 1rem;
    max-width: 380px;
}

.footer-newsletter {
    display: flex;
    background-color: var(--color-bg-white);
    padding: 0.35rem;
    border-radius: 100px;
    border: 1px solid rgba(17, 21, 20, 0.06);
    box-shadow: 0 10px 25px rgba(17, 21, 20, 0.02);
}

.footer-newsletter input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-body);
    outline: none;
    font-size: 0.9rem;
    color: var(--color-text-title);
}

.footer-newsletter button {
    border: none;
    background-color: var(--color-text-title);
    color: var(--color-bg-white);
    padding: 0.75rem 1.8rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-newsletter button:hover {
    background-color: var(--color-accent-coral);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    padding: 0.65rem 1.4rem;
    background-color: var(--color-bg-white);
    border: 1px solid rgba(17, 21, 20, 0.06);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-body);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-btn:hover {
    color: var(--color-accent-coral);
    border-color: rgba(255, 95, 56, 0.25);
    background-color: rgba(255, 95, 56, 0.02);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE ADAPTATION)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .performance-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .performance-visual {
        order: 2;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .tech-right {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--color-border-glass);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.4rem;
    }
    
    .mobile-nav-toggle {
        display: flex;
        z-index: 1001;
        margin-left: 1rem;
    }
    
    .mobile-nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    
    .btn-primary-coral {
        width: 100%;
        text-align: center;
    }
    
    .features-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .features-tabs {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem;
    }
    
    .footer-blur-card {
        padding: 2.5rem 1.5rem;
        border-radius: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .custom-cursor, .custom-cursor-dot {
        display: none;
    }
}

/* ==========================================================================
   INTERACTIVE HOTSPOTS ON HERO IMAGE
   ========================================================================== */
.hotspot {
    position: absolute;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
}

.hotspot-pin {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.pin-dot {
    position: absolute;
    inset: 0;
    background-color: var(--color-accent-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    box-shadow: 0 4px 15px rgba(255, 95, 56, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background-color: rgba(255, 95, 56, 0.25);
    animation: hotspot-pulse 2.2s ease-out infinite;
    z-index: 1;
}

@keyframes hotspot-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
}

.hotspot-popup {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 30px rgba(17, 21, 20, 0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: 12px;
}

.hotspot:hover .hotspot-popup {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.hotspot:hover .pin-dot {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 95, 56, 0.55);
}

.popup-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background-color: rgba(255, 95, 56, 0.1);
    color: var(--color-accent-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.popup-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.popup-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-title);
    line-height: 1.2;
}

.popup-sub {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.popup-arrow {
    font-size: 0.65rem;
    color: var(--color-accent-coral);
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.hotspot:hover .popup-arrow {
    transform: translateX(3px);
}

.hotspot-ventanas {
    top: 20%;
    right: 14%;
    flex-direction: row-reverse;
}
.hotspot-ventanas .hotspot-popup {
    order: -1;
    margin-left: 0;
    margin-right: 12px;
    transform: translateX(10px) scale(0.95);
}
.hotspot-ventanas:hover .hotspot-popup {
    transform: translateX(0) scale(1);
}

.hotspot-puertas {
    bottom: 32%;
    left: 28%;
}

.hotspot-cabinas {
    top: 58%;
    right: 10%;
    flex-direction: row-reverse;
}
.hotspot-cabinas .hotspot-popup {
    order: -1;
    margin-left: 0;
    margin-right: 12px;
    transform: translateX(10px) scale(0.95);
}
.hotspot-cabinas:hover .hotspot-popup {
    transform: translateX(0) scale(1);
}

@media (max-width: 768px) {
    .hotspot-popup { display: none; }
}

/* === Slide CTA button === */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--color-text-title);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.slide-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.slide-cta:hover {
    background-color: var(--color-accent-coral);
    color: #fff;
    border-color: var(--color-accent-coral);
}

.slide-cta:hover i {
    transform: translateX(4px);
}

/* === Image placeholder for cards (replace with real photo when ready) === */
.card-img-placeholder {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 0 0 35px 35px;
    background: rgba(0, 0, 0, 0.05);
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s ease;
    cursor: default;
}

.card-img-placeholder i {
    font-size: 2rem;
    opacity: 0.35;
}

.dark-slide .card-img-placeholder {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.35);
}

.feature-card-slide:hover .card-img-placeholder {
    background: rgba(0, 0, 0, 0.07);
}

/* ==========================================================================
   PORTFOLIO / TRABAJOS REALIZADOS SECTION
   ========================================================================== */
.portfolio-section {
    padding: 8rem 0;
}

.portfolio-header {
    margin-bottom: 4rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: pointer;
}

.portfolio-img-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 24px;
    background-color: #f1f4f2;
    border: 1px dashed rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: rgba(0,0,0,0.4);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-img-placeholder i {
    font-size: 2.2rem;
    opacity: 0.4;
}

.portfolio-item:hover .portfolio-img-placeholder {
    transform: translateY(-8px);
    background-color: #eaeaea;
    box-shadow: 0 20px 40px rgba(17, 21, 20, 0.08);
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-title);
    margin-bottom: 0.35rem;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--color-text-body);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-us {
    padding: 6rem 0;
}

.why-header {
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-card {
    background-color: #ffffff;
    border: 1px solid rgba(17, 21, 20, 0.05);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(17, 21, 20, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(17, 21, 20, 0.08);
    border-color: rgba(255, 95, 56, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background-color: #ffede8;
    color: var(--color-accent-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background-color: var(--color-accent-coral);
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-title);
    margin-top: 0.5rem;
}

.why-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-body);
    opacity: 0.85;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   QUIÉNES SOMOS (ABOUT) SECTION
   ========================================================================== */
.about-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-top: 1.5rem;
    opacity: 0.9;
}

.about-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(17, 21, 20, 0.08);
    padding-top: 2rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-coral);
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.about-right {
    position: relative;
}

.about-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background-color: #f5f8f6;
    border: 1px dashed rgba(17, 21, 20, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.about-img-placeholder i {
    font-size: 2.5rem;
    opacity: 0.4;
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(17, 21, 20, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.about-floating-card i {
    font-size: 1.8rem;
    color: #00b050;
}

.about-floating-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-title);
    margin-bottom: 0.2rem;
}

.about-floating-card p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-floating-card {
        left: 20px;
    }
}

/* ==========================================================================
   SERVICES VISUAL MOSAIC GRID SECTION
   ========================================================================== */
.services-grid-section {
    padding: 8rem 0;
}

.services-grid-header {
    margin-bottom: 4rem;
}

.services-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.mosaic-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(17, 21, 20, 0.05);
}

.mosaic-img-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Background image fallbacks (replacing later with real images) */
.placeholder-vidrios { background-image: url('assets/hero_bg.webp'); }
.placeholder-ventaneria { background-image: url('assets/hero_bg.webp'); }
.placeholder-rejas { background-image: url('assets/office_division.webp'); }
.placeholder-puertas { background-image: url('assets/office_division.webp'); }
.placeholder-pasamanos { background-image: url('assets/hero_bg.webp'); }
.placeholder-cabinas { background-image: url('assets/shower_cabin.webp'); }
.placeholder-espejos { background-image: url('assets/shower_cabin.webp'); }
.placeholder-accesorios { background-image: url('assets/hero_bg.webp'); }

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Dark overlay to read text clearly */
    transition: background-color 0.4s ease;
    z-index: 1;
}

.mosaic-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
    padding: 1rem;
    pointer-events: none;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.mosaic-item:hover .mosaic-img-box {
    transform: scale(1.08);
}

.mosaic-item:hover .mosaic-overlay {
    background: rgba(0, 0, 0, 0.35); /* Brightens image slightly on hover */
}

.mosaic-item:hover .mosaic-title {
    transform: scale(1.05);
}

/* Responsive grid layouts */
@media (max-width: 992px) {
    .services-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-mosaic-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SERVICES DETAILED GALLERY (servicios.html)
   ========================================================================== */
.services-detail-section {
    padding: 4rem 0 8rem 0;
}

.services-detail-header {
    margin-bottom: 3.5rem;
}

/* Tabs list */
.detail-tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
    border-bottom: 2px solid rgba(17, 21, 20, 0.06);
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
}

.detail-tab-btn {
    border: 1px solid rgba(17, 21, 20, 0.08);
    background: transparent;
    padding: 0.8rem 1.6rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-tab-btn:hover {
    border-color: var(--color-accent-coral);
    color: var(--color-accent-coral);
}

.detail-tab-btn.active {
    background-color: var(--color-accent-coral);
    border-color: var(--color-accent-coral);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 95, 56, 0.25);
}

/* Tab panes switching */
.detail-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.detail-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-pane h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-title);
    margin-bottom: 0.8rem;
}

.pane-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Image grid placeholders */
.gallery-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-img-box {
    aspect-ratio: 4/3;
    background-color: #f5f8f6;
    border: 1px dashed rgba(17, 21, 20, 0.12);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-img-box i {
    font-size: 2rem;
    opacity: 0.4;
}

.gallery-img-box:hover {
    background-color: #edf2f0;
    border-color: var(--color-accent-coral);
    color: var(--color-accent-coral);
}

@media (max-width: 992px) {
    .gallery-placeholder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-placeholder-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-tabs {
        flex-direction: column;
    }
    
    .detail-tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* Sistemas de Ventanería Premium Layout */
.systems-intro {
    background: rgba(255, 95, 56, 0.04);
    border-left: 4px solid var(--color-accent-coral);
    padding: 1.25rem 1.5rem;
    border-radius: 4px 12px 12px 4px;
    margin-bottom: 2.5rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--color-text-body);
}

.systems-intro i {
    color: var(--color-accent-coral);
    margin-right: 0.5rem;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.system-card {
    background: #ffffff;
    border: 1px solid rgba(17, 21, 20, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(17, 21, 20, 0.08);
    border-color: rgba(255, 95, 56, 0.2);
}

.system-img-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: #f7faf8;
    border-bottom: 1px solid rgba(17, 21, 20, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: background-color 0.3s;
}

.system-card:hover .system-img-placeholder {
    background-color: #f1f6f3;
}

.system-img-placeholder i {
    font-size: 2.2rem;
    color: var(--color-accent-coral);
    opacity: 0.7;
}

.system-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.system-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-coral);
    background: rgba(255, 95, 56, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.system-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-title);
    margin-bottom: 0.6rem;
}

.system-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.system-specs {
    margin-top: auto;
    border-top: 1px dashed rgba(17, 21, 20, 0.1);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

.spec-label {
    color: var(--color-text-muted);
    font-weight: 400;
}

.spec-value {
    color: var(--color-text-title);
    font-weight: 600;
}

