/* 
   SAMA Remote Solutions - Core Stylesheet
   Designed with premium dark tech aesthetics, glowing crimson accents, and glassmorphism.
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #0a0b10;
    --bg-card: rgba(20, 22, 32, 0.65);
    --bg-card-hover: rgba(28, 30, 44, 0.85);
    --primary: #ff2a5f;
    --primary-glow: rgba(255, 42, 95, 0.35);
    --primary-hover: #e01b4c;
    --secondary: #00f0ff;
    --secondary-glow: rgba(0, 240, 255, 0.25);
    --accent: #ff8a00;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 42, 95, 0.3);
    
    /* Layout Tokens */
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Lights */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

body::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

/* Navigation Bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 16, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 2rem;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--primary-glow);
    font-weight: 800;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 42, 95, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 42, 95, 0.1);
    border: 1px solid rgba(255, 42, 95, 0.2);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 0.75rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
}

.stat-val span {
    color: var(--primary);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Interactive Display Frame in Hero */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.screen-container {
    width: 100%;
    background: rgba(15, 17, 26, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8),
                0 0 50px -10px var(--primary-glow);
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: var(--transition);
}

.screen-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.9),
                0 0 60px -5px var(--primary-glow);
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.screen-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.screen-content {
    background: #0d0f17;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: var(--transition);
}

/* Floating Badges in Hero */
.floating-badge {
    position: absolute;
    background: rgba(10, 11, 16, 0.85);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.fb-1 {
    top: 10%;
    left: -10%;
}

.fb-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fb-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
}

.fb-icon.red {
    background: rgba(255, 42, 95, 0.1);
    color: var(--primary);
}

.fb-info {
    display: flex;
    flex-direction: column;
}

.fb-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.fb-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* General Layout Structure */
section {
    padding: 7rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Software Products Showcase */
.products-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 22, 32, 0.3) 50%, var(--bg-dark) 100%);
    position: relative;
}

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

/* Tabs for Products selection */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Product Cards Viewports */
.product-showcase-container {
    display: block;
}

.product-item {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.product-item.active {
    display: grid;
}

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

.product-info h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-info h3 span {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-muted);
    font-weight: 500;
    vertical-align: middle;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-details {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.product-features-list li i {
    color: var(--primary);
}

/* Integration Badges & Partners */
.integration-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.integration-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.int-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-main);
    background: rgba(255, 42, 95, 0.1);
    border: 1px solid rgba(255, 42, 95, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    transition: var(--transition);
}

.int-badge:hover {
    background: rgba(255, 42, 95, 0.2);
    border-color: rgba(255, 42, 95, 0.5);
    transform: translateY(-1px);
}

/* Dynamic Download Button Cards */
.download-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.download-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(15, 17, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: left;
}

.download-box:hover {
    border-color: var(--border-color-hover);
    background: rgba(15, 17, 26, 0.8);
    transform: translateY(-2px);
}

.db-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.db-icon {
    font-size: 1.5rem;
    color: var(--text-main);
}

.db-info {
    display: flex;
    flex-direction: column;
}

.db-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.db-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.btn-download {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
    border-radius: 6px;
}

/* Image preview section */
.product-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.product-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.product-media:hover img {
    transform: scale(1.03);
}

/* Features Grid */
.features {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.f-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 42, 95, 0.1);
    border: 1px solid rgba(255, 42, 95, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 42, 95, 0.05);
}

.f-icon.blue {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.2);
    color: var(--secondary);
}

.f-icon.orange {
    background: rgba(255, 138, 0, 0.1);
    border-color: rgba(255, 138, 0, 0.2);
    color: var(--accent);
}

.feature-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Technical Details Matrix */
.spec-section {
    background: rgba(15, 17, 26, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spec-table-wrapper {
    background: rgba(20, 22, 32, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th, .spec-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.spec-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.spec-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--text-main);
}

.spec-table td:last-child {
    color: var(--text-muted);
}

.spec-check {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* Contact / Trial Call-to-action */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: radial-gradient(circle, rgba(255,42,95,0.08) 0%, rgba(0,0,0,0) 80%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 42, 95, 0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Dialog / Modal Notification Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 42, 95, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--primary-glow);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.open .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-main);
}

.modal-header-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-body {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.modal-body ol {
    margin-top: 0.75rem;
    margin-left: 1.25rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-body strong {
    color: var(--text-main);
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem;
    background-color: #06070a;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 4rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.social-links a {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--text-main);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2.5rem;
    }
    
    .hero-visual {
        max-width: 650px;
        margin: 0 auto;
    }
    
    .product-item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-item.active {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .product-media {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Customized Software Section Styles */
.custom-software-section {
    padding: 8rem 2rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 17, 28, 0.4) 50%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

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

.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.15);
}

.sc-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 15px var(--secondary-glow);
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Image Zoom and Click Indicators */
.zoom-trigger {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.zoom-trigger:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 12px 30px rgba(255, 42, 95, 0.15);
}

.zoom-trigger img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.zoom-trigger:hover img {
    transform: scale(1.03);
}

.media-zoom-overlay {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    opacity: 0;
    z-index: 5;
    pointer-events: none;
    transform: translateY(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.zoom-trigger:hover .media-zoom-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Custom CTA Block */
.custom-cta {
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(20, 22, 32, 0.8), rgba(12, 13, 20, 0.95));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.custom-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.custom-cta-content {
    position: relative;
    z-index: 2;
}

.custom-cta-content h4 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.custom-cta-content p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 680px;
    line-height: 1.6;
}

.custom-cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Lightbox Modal Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(6, 7, 10, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.lightbox.open {
    display: block;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: var(--text-muted);
    font-size: 45px;
    font-weight: 300;
    transition: var(--transition);
    cursor: pointer;
    z-index: 2100;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.lightbox-close:hover {
    color: var(--text-main);
    background: rgba(255, 42, 95, 0.2);
    border-color: var(--primary);
    transform: rotate(90deg);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-main);
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Quick Download Selector Widget */
.quick-download-widget {
    background: rgba(20, 22, 32, 0.45);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 10;
}

.quick-download-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 42, 95, 0.05), transparent);
    pointer-events: none;
    z-index: -1;
}

.qdw-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.qdw-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

#qdw-platform-options {
    grid-template-columns: repeat(2, 1fr);
}

.qdw-opt-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.qdw-opt-btn i {
    font-size: 0.95rem;
}

.qdw-opt-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.qdw-opt-btn.active {
    background: rgba(255, 42, 95, 0.12);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.2);
}

.qdw-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 0.25rem;
}

#qdw-download-btn {
    flex: 1.3;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
}

.qdw-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex: 0.9;
    text-align: right;
    line-height: 1.4;
}

/* Secondary Hero Links Styling */
.hero-secondary-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-left: 0.25rem;
}

.hero-secondary-actions a {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px dotted rgba(255, 42, 95, 0.4);
    padding-bottom: 1px;
}

.hero-secondary-actions a:hover {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-hover);
}

.hero-secondary-actions .separator {
    color: rgba(255, 255, 255, 0.15);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: #0d0f17;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav-links.open {
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .nav-links .btn {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Custom Services Responsive overrides */
    .custom-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .custom-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .custom-cta-action {
        width: 100%;
    }

    .custom-cta-action .btn {
        width: 100%;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    /* Responsive styles for download widget */
    .quick-download-widget {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero-secondary-actions {
        justify-content: center;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
    }
    
    @media (max-width: 480px) {
        .qdw-options {
            grid-template-columns: 1fr;
        }
        #qdw-platform-options {
            grid-template-columns: 1fr;
        }
        .qdw-action-row {
            flex-direction: column;
            align-items: stretch;
            gap: 0.75rem;
        }
        .qdw-meta {
            text-align: center;
        }
    }
}
