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

:root {
    --bg-dark: #030712;
    --bg-card: rgba(15, 23, 42, 0.65);
    --bg-nav: rgba(3, 7, 18, 0.75);
    --primary: #FF8500;
    --primary-glow: rgba(255, 133, 0, 0.4);
    --success: #00827C;
    --success-glow: rgba(0, 130, 124, 0.4);
    --blue: #013682;
    --blue-cyan: #00B4D8;
    --text-main: #F3F4F6;
    --text-soft: #9CA3AF;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 133, 0, 0.15);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1F2937;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Background Glow Effects */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(1, 54, 130, 0.25) 0%, rgba(3, 7, 18, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}
.glow-orange {
    background: radial-gradient(circle, rgba(255, 133, 0, 0.15) 0%, rgba(3, 7, 18, 0) 70%);
}
.glow-cyan {
    background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, rgba(3, 7, 18, 0) 70%);
}

/* Floating Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 12px 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand img {
    height: 36px;
    width: auto;
}

.nav-brand span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.nav-brand span span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.2s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px var(--primary-glow);
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background-color: #E07500;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--primary-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tag {
    background: rgba(255, 133, 0, 0.1);
    border: 1px solid rgba(255, 133, 0, 0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

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

.hero-desc {
    color: var(--text-soft);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 20px var(--primary-glow);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #E07500;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-soft);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    perspective: 1000px;
}

.hero-mockup {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    transform: rotateY(-10deg) rotateX(10deg);
    transition: transform 0.5s ease;
}

.hero-mockup-wrapper:hover .hero-mockup {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-5px);
}

/* Features Section */
.features {
    padding: 120px 24px 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--border-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 133, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 133, 0, 0.05);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 133, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 28px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-desc {
    color: var(--text-soft);
    font-size: 15px;
}

/* Modules / Screen Showcase Layouts */
.showcase-sec {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.showcase-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.75px;
}

.showcase-text h3 span {
    color: var(--primary);
}

.showcase-text p {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.feature-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.feature-tag-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
}

.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-img-container {
    position: relative;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.showcase-img-container:hover {
    transform: scale(1.02);
    border-color: rgba(255, 133, 0, 0.3);
}

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

/* Interactive Simulator Section */
.simulator-sec {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #060d1f 50%, var(--bg-dark) 100%);
}

.simulator-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.sim-info h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sim-info p {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 32px;
}

.sim-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sim-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-num {
    background: rgba(255, 133, 0, 0.1);
    color: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-text p {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 0;
}

/* Interactive Simulator Widget Styles */
/* Interactive 3D Simulator Layout */
.sim-widget {
    background: #030712;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .sim-widget {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 20px;
    }
}

.sim-visual-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sim-camera-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.camera-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-soft);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.camera-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: var(--primary);
}
.camera-btn.active {
    background: rgba(255, 133, 0, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

/* Sequential Program Step Elements */
.step-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.2s ease;
}
.step-bubble:hover {
    border-color: var(--text-soft);
    color: var(--text-main);
}
.step-bubble.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 10px var(--primary-glow);
}
.step-bubble.add-btn {
    background: rgba(0, 130, 124, 0.1);
    border-color: var(--success);
    color: var(--success);
}
.step-bubble.add-btn:hover {
    background: var(--success);
    color: white;
}

/* 3x3 Mini Grid Selection Matrix */
.mini-grid {
    background: #061911;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 3px;
}
.mini-cell {
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.mini-cell:hover {
    background: rgba(255, 133, 0, 0.15);
}
.mini-cell.active {
    background: rgba(255, 133, 0, 0.5);
    border: 1.5px solid var(--primary);
}


/* Simulator controls */
.sim-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}

.slider-labels span:last-child {
    color: var(--primary);
    font-weight: 700;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #1F2937;
    border-radius: 100px;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: transform 0.1s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.sim-actions {
    display: flex;
    gap: 16px;
}

.sim-btn {
    flex: 1;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.2s ease;
}

.sim-btn:hover {
    background: #E07500;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--primary-glow);
}

.sim-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    box-shadow: none;
}

.sim-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Device Section */
.device-sec {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.device-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.device-img-wrapper {
    background: radial-gradient(circle, rgba(1, 54, 130, 0.15) 0%, rgba(3, 7, 18, 0) 75%);
    padding: 32px;
    display: flex;
    justify-content: center;
}

.device-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    transition: transform 0.5s ease;
}

.device-img-wrapper:hover .device-img {
    transform: scale(1.05) translateY(-5px);
}

.device-specs h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.device-specs h2 span {
    color: var(--primary);
}

.device-specs p {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 40px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.spec-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.spec-item p {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 0;
}

/* App Download Banner */
.download-sec {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto 120px auto;
}

.download-banner {
    background: linear-gradient(135deg, #013682 0%, #001D47 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.download-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 133, 0, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.download-content h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.download-content p {
    color: rgba(243, 244, 246, 0.7);
    font-size: 16px;
    margin-bottom: 36px;
    max-width: 500px;
}

.download-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-btn {
    background: #030712;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.badge-btn:hover {
    background: #111827;
    border-color: rgba(255, 133, 0, 0.4);
    transform: translateY(-2px);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span:first-child {
    font-size: 10px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-text span:last-child {
    font-size: 15px;
    font-weight: 700;
}

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

.download-visual img {
    height: 280px;
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    background: #010610;
    padding: 64px 24px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 32px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
}

.footer-logo span span {
    color: var(--primary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 13px;
    color: #4B5563;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding-top: 160px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-title {
        font-size: 44px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .showcase-row.reverse {
        grid-template-columns: 1fr;
    }
    .showcase-row.reverse .showcase-text {
        order: -1; /* Keep text above visual on mobile */
    }
    .showcase-text {
        align-items: center;
    }
    .feature-tag-list {
        justify-content: center;
    }
    .simulator-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .device-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .download-banner {
        grid-template-columns: 1fr;
        padding: 48px;
        text-align: center;
    }
    .download-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .download-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-nav);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-btn {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Technical Specifications Table */
.specs-table-sec {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.specs-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow-x: auto;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.specs-table th {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    padding: 16px 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.specs-table td {
    padding: 18px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}
.specs-table tr:last-child td {
    border-bottom: none;
}
.specs-table td.spec-name {
    font-weight: 600;
    color: var(--text-main);
    width: 35%;
}
.specs-table td.spec-val {
    color: var(--text-soft);
}

/* User Testimonials */
.testimonials-sec {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 133, 0, 0.3);
}
.test-quote {
    color: var(--text-main);
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
}
.test-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 72px;
    color: rgba(255, 133, 0, 0.1);
    position: absolute;
    top: -40px;
    left: -20px;
    font-weight: 700;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.test-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
}
.test-meta h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}
.test-meta span {
    font-size: 12px;
    color: var(--text-soft);
}
.test-rating {
    color: #FFB703;
    font-size: 14px;
    margin-top: 4px;
}

/* Pricing Card Thumbnail Images */
.price-card-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}
.price-card:hover .price-card-thumb {
    border-color: rgba(255, 133, 0, 0.4);
}

/* Product Gallery Interactive Animations */
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item:hover {
    border-color: rgba(255, 133, 0, 0.4) !important;
    box-shadow: 0 10px 25px rgba(255, 133, 0, 0.08);
}


