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

:root {
    --primary: #FFD700;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav.container {
    max-width: 1400px;
}

/* Header */
header {
    background: var(--light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    padding: 0.8rem 0;
}

nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}

.logo-shape {
    width: 45px;
    height: 45px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dark);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.logo-shape::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
}

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

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--primary);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--dark);
    color: var(--primary);
}

/* Hero Section - Concept 5: Nothing Needed - Ultra Minimalist */
.hero {
    padding: 180px 0 60px;
    background: var(--light);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-text h1 .accent {
    color: var(--primary);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.location-visual {
    width: 250px;
    height: 250px;
    margin: 0 auto 4rem;
    position: relative;
}

.location-circle {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    background: rgba(255, 215, 0, 0.1);
    animation: pulse 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.location-pin::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--dark);
    border-radius: 50%;
    transform: rotate(45deg);
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 3s linear infinite;
}

.ripple:nth-child(2) { animation-delay: 1s; }
.ripple:nth-child(3) { animation-delay: 2s; }

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-cctv-icon {
    max-height: 120px;
    width: auto;
    display: block;
    margin: 1.5rem auto 0.5rem auto;
}

/* Hero section header styling */
.hero .section-header {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.hero .section-header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary);
}

.hero .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero .section-desc {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.hero .section-desc::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
}

/* Add fade-in animation for section header */
.hero .section-header {
    animation: fadeInUp 1s ease 1.5s both;
}

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

/* Hero Segment Toggle */
.hero-segment {
    margin-top: 2rem;
    position: relative;
}

.segment-toggle {
    display: inline-flex;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.segment-option {
    background: transparent;
    border: none;
    color: var(--light);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.segment-option.active {
    background: var(--primary);
    color: var(--dark);
    opacity: 1;
    font-weight: 600;
}

.segment-option:hover:not(.active) {
    opacity: 1;
}

.segment-content {
    position: relative;
    min-height: 100px;
    overflow: visible;
}

.segment-panel {
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    text-align: center;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.segment-panel.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.segment-text {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    padding: 0 20px;
}

/* Keep original button styles for use elsewhere */
.btn-primary {
    background: var(--primary);
    color: var(--dark);
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.btn-secondary:hover {
    color: var(--primary);
}

.btn-secondary:hover::after {
    width: 100%;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-customer,
    .btn-partner {
        width: 100%;
    }
}

.minimal-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #f0f0f0;
}

.minimal-feature {
    text-align: center;
    color: var(--gray);
}

.minimal-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.minimal-feature p {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 60px 0 100px;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    border-radius: 50%;
    transition: all 0.5s;
}

.feature-card:hover::before {
    opacity: 0.1;
    top: -25%;
    right: -25%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--dark);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--dark);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* WhatsApp Section */
.whatsapp-feature {
    padding: 100px 0;
    background: linear-gradient(135deg, #3a3a3a 0%, #4d4d4d 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

/* Removed striped pattern */

.whatsapp-feature::after {
    content: '\f232';
    font-family: 'Font Awesome 5 Brands';
    position: absolute;
    top: 50%;
    right: -10%;
    font-size: 30rem;
    color: rgba(37,211,102,0.05);
    transform: translateY(-50%) rotate(-15deg);
    z-index: 0;
}


.whatsapp-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.whatsapp-feature h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.whatsapp-feature h2 i {
    color: #25D366;
    margin-right: 0.5rem;
}

.whatsapp-feature > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* WhatsApp Intro Traditional Style */
.whatsapp-intro {
    font-size: 1.25rem !important;
    font-weight: 400;
    margin: 2rem auto 3rem !important;
    max-width: 900px;
    line-height: 1.6;
    text-align: center;
    color: rgba(255,255,255,0.95);
}

.whatsapp-intro strong {
    color: #FFD700;
    font-weight: 600;
}

/* WhatsApp Slider Styles */
.whatsapp-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.slider-features {
    text-align: left;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.feature-item.active {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-item.active .feature-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Phone Mockup */
.slider-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 350px;
    height: 700px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-radius: 15px;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 40px);
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    margin-top: 35px;
    position: relative;
}

.feature-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-screenshot.active {
    opacity: 1;
}

/* WhatsApp Screenshot Styles */
.whatsapp-header {
    background: #075E54;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.contact-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

.contact-info {
    flex: 1;
}

.contact-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-status {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.whatsapp-messages {
    background: #E5DDD5;
    padding: 15px;
    height: calc(100% - 55px);
    overflow-y: auto;
    position: relative;
}

.msg {
    max-width: 70%;
    padding: 8px 12px;
    margin: 8px 0;
    border-radius: 7.5px;
    position: relative;
    clear: both;
}

.msg p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #303030;
    text-align: left;
}

.msg.sent {
    background: #DCF8C6;
    margin-left: auto;
    float: right;
}

.msg.received {
    background: white;
    float: left;
}

.msg-time {
    display: block;
    font-size: 0.65rem;
    color: #999;
    margin-top: 3px;
    text-align: right;
}

.msg.received .msg-time {
    text-align: left;
}

.alert-msg {
    background: #FFE5E5 !important;
}

.warning-msg {
    background: #FFF3CD !important;
}

.urgent-msg {
    background: #FFE5E5 !important;
    border: 1px solid #FF9999;
}

.video-preview {
    position: relative;
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-overlay i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.video-overlay span {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.sender-name {
    color: #25D366;
    font-weight: 600;
    font-size: 0.75rem !important;
    margin-bottom: 2px !important;
}

.msg-status {
    text-align: center;
    margin: 10px 0;
}

.msg-status p {
    font-size: 0.7rem;
    color: #999;
    font-style: italic;
}

/* Markets Section */
.markets {
    padding: 100px 0;
    background: var(--light-gray);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.market-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.market-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.market-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s;
}

.market-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.market-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Hardware Section */
.hardware {
    padding: 100px 0;
    background: linear-gradient(135deg, #3a3a3a 0%, #4d4d4d 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

.hardware::after {
    content: '\f03d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: -10%;
    font-size: 30rem;
    color: rgba(255,215,0,0.05);
    transform: translateY(-50%) rotate(15deg);
    z-index: 0;
}

.hardware .section-title {
    color: white;
}

.hardware .section-desc {
    color: rgba(255,255,255,0.9);
}

.hardware-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
}

.hardware-content {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hardware-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.hardware-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hardware-card.featured {
    border-color: rgba(255,215,0,0.3);
}

.hardware-image {
    position: relative;
    height: 525px;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hardware-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hardware-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hardware-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.hardware-info {
    padding: 2.5rem;
}

.hardware-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.hardware-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hardware-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hardware-features li {
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hardware-features li:last-child {
    border-bottom: none;
}

.hardware-features i {
    color: var(--primary);
    font-size: 1rem;
}

.hardware-cta {
    text-align: center;
}

.btn-hardware {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.btn-hardware:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-hardware.featured {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-hardware.featured:hover {
    background: #FFA500;
    border-color: #FFA500;
}

.hardware-availability {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--light);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--light);
    border: 2px solid #e0e0e0;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-device {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin: -1rem 0 1.5rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    padding: 12px 30px;
    border: 2px solid var(--dark);
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    display: inline-block;
}

.pricing-card.featured .pricing-btn {
    background: var(--primary);
    border-color: var(--primary);
}

.pricing-btn:hover {
    background: var(--dark);
    color: var(--light);
}

.monitoring-option {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: center;
    color: var(--dark);
    font-size: 0.9rem;
}

.monitoring-option i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.monitoring-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Pricing CTA Section */
.pricing-cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ffc700 100%);
    border-radius: 20px;
    text-align: center;
}

.pricing-cta-content h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.pricing-cta-content h3 i {
    margin-right: 0.5rem;
}

.pricing-cta-content p {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-content strong {
    color: var(--dark);
    font-weight: 700;
}

.pricing-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-examples .example {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pricing-examples .example-icon {
    font-size: 2rem;
}

.pricing-examples .example-text {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
}

.btn-primary.large {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: var(--dark);
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary.large:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* VAT Notice */
.vat-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--gray);
    font-size: 0.95rem;
}

.vat-notice i {
    margin-right: 0.5rem;
    color: #6c757d;
}

.vat-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Bundle Builder Section */
.bundle-builder-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
    border-radius: 20px;
    border: 2px solid var(--primary);
}

.bundle-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bundle-header p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bundle-header p:first-child {
    font-size: 1.2rem;
    color: var(--dark);
}

.bundle-vat-note {
    margin-top: 0.5rem;
    font-size: 0.9rem !important;
    color: #6c757d !important;
    font-style: italic;
}

.bundle-vat-note i {
    margin-right: 0.3rem;
    font-size: 0.85rem;
}

/* Progress Bar */
.bundle-progress {
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 2rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 33.33%;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background: var(--primary);
    color: var(--dark);
}

.progress-step.completed .step-circle {
    content: '✓';
}

.progress-step span {
    font-size: 0.9rem;
    color: var(--gray);
}

.progress-step.active span {
    color: var(--dark);
    font-weight: 600;
}

/* Bundle Content */
.bundle-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-height: 500px;
}

.bundle-step-content {
    display: none;
}

.bundle-step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.step-header {
    margin-bottom: 2rem;
}

.step-header h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-header p {
    color: var(--gray);
}

/* Step 1: Units Selection */
.units-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.unit-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.unit-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.unit-image {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.unit-image i {
    font-size: 2.5rem;
    color: var(--dark);
}

.unit-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.unit-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.unit-price-tag {
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.see-hardware-link {
    display: inline-block;
    background: #f0f8ff;
    color: #0066cc;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    margin: 0.8rem 0 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #d0e0ff;
}

.see-hardware-link:hover {
    background: #e0f0ff;
    color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,102,204,0.1);
}

.see-hardware-link i {
    font-size: 0.85rem;
    margin-right: 0.4rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    background: white;
    border-radius: 8px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--dark);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#camera-qty, #pod-qty {
    width: 60px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Discount Breakdown Box */
.discount-breakdown-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f8ff;
    border-radius: 12px;
    border: 1px solid #d0e0ff;
}

.discount-breakdown-box h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-breakdown-box h5 i {
    color: #28a745;
}

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

.discount-level {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.discount-level:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.discount-level.best-value {
    border-color: #28a745;
    background: #f0fff4;
}

.units-range {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.discount-badge {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #28a745;
}

.best-value-tag {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    background: #28a745;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .discount-levels {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .discount-level {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem;
    }
    
    .units-range {
        margin-bottom: 0;
    }
    
    .best-value-tag {
        position: static;
        transform: none;
        margin-left: 1rem;
    }
}

/* Step Footer */
.step-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.units-total {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.discount-preview {
    background: #d4edda;
    color: #155724;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.step-continue, .step-back, .get-quote-final {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-continue, .get-quote-final {
    background: var(--primary);
    color: var(--dark);
}

.step-continue:hover:not(:disabled), .get-quote-final:hover {
    background: #e6c300;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

.step-continue:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.step-back {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray);
}

.step-back:hover {
    background: var(--gray);
    color: white;
}

/* Step 2: Monitoring Options */
.monitoring-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.monitoring-option {
    position: relative;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.monitoring-option.selected {
    border-color: var(--primary);
    border-width: 4px;
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.monitoring-option.selected h5 {
    color: var(--dark);
    font-weight: bold;
}

.monitoring-option.selected p {
    color: var(--dark);
}

.monitoring-option.selected .option-price {
    color: var(--dark);
    font-weight: bold;
}

.monitoring-option.selected .option-icon {
    background: rgba(26, 26, 26, 0.1);
}

.monitoring-option.selected .option-icon i {
    color: var(--dark);
}

.monitoring-option.recommended {
    border-color: #28a745;
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.monitoring-option.recommended .option-icon {
    background: #d4edda;
}

.option-icon i {
    font-size: 2.5rem;
    color: var(--gray);
}

.monitoring-option.recommended .option-icon i {
    color: #28a745;
}

.monitoring-option h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.monitoring-option p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.option-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 1rem;
}

.select-option {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.monitoring-option:not(.recommended) .select-option {
    background: white;
    color: var(--dark);
    border: 2px solid var(--primary);
}

.monitoring-option.recommended .select-option {
    background: #28a745;
    color: white;
}

.select-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Step 3: Final Summary */
.final-summary {
    max-width: 600px;
    margin: 0 auto;
}

.summary-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
}

.summary-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.item-cost {
    font-weight: bold;
    color: var(--dark);
}

.summary-discount {
    background: #d4edda;
    color: #155724;
}

.summary-discount i {
    color: #28a745;
}

.discount-value {
    color: #28a745;
    font-weight: bold;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 1rem;
    border-top: 2px solid var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
}

.total-amount {
    font-size: 1.5rem;
    color: var(--dark);
}

.savings-highlight {
    background: var(--primary);
    color: var(--dark);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .bundle-builder-section {
        padding: 2rem 1rem;
    }
    
    .units-selection,
    .monitoring-options {
        grid-template-columns: 1fr;
    }
    
    .step-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .units-total {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column-reverse;
        gap: 1rem;
        width: 100%;
    }
    
    .step-back,
    .step-continue,
    .get-quote-final {
        width: 100%;
    }
}

/* Existing Security Company Section */
.existing-security-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
    border-radius: 15px;
    border: 2px solid #b8d4c8;
}

.existing-security-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.existing-security-content .icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.existing-security-content .icon-wrapper i {
    font-size: 2.5rem;
    color: #28a745;
}

.existing-security-content .text-content {
    flex: 1;
}

.existing-security-content h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.existing-security-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .existing-security-content {
        flex-direction: column;
        text-align: center;
    }
    
    .existing-security-content .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .existing-security-content .icon-wrapper i {
        font-size: 2rem;
    }
}

/* Permanent Installation Section */
.permanent-installation-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px solid #e0e0e0;
}

.permanent-installation-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.permanent-installation-content h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.permanent-installation-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partner-highlight {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: center;
}

.partner-logo-section {
    text-align: center;
    padding-right: 2rem;
    border-right: 2px solid #f0f0f0;
}

.partner-logo-section h4 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.partner-tagline {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.partner-services > p {
    color: #555;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-item:hover {
    background: var(--primary);
    transform: translateX(5px);
}

.service-item i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 25px;
    text-align: center;
}

.service-item:hover i {
    color: var(--dark);
}

.service-item span {
    color: #555;
    font-size: 0.95rem;
}

.service-item:hover span {
    color: var(--dark);
    font-weight: 600;
}

.btn-partner {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-partner:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-partner i {
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .partner-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-logo-section {
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
        padding-right: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .permanent-installation-section {
        padding: 2rem 1.5rem;
    }
}

/* New Pricing Table Styles */
.pricing-table-container {
    overflow-x: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    background: white;
    margin-top: 3rem;
}

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

.pricing-table th,
.pricing-table td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.product-header {
    background: #f8f9fa;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    width: 25%;
}

.price-header {
    background: #f8f9fa;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    width: 25%;
}

.price-header.featured {
    background: var(--primary);
    color: var(--dark);
    position: relative;
}

.product-cell h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-cell p {
    color: #666;
    font-size: 0.9rem;
}

.price-cell {
    text-align: center;
    vertical-align: top;
    background: white;
}

.price-cell.featured {
    background: rgba(255,215,0,0.05);
}

.price-cell .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.price-cell .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.not-available {
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.features-list i {
    color: #4caf50;
    margin-right: 0.5rem;
}

.table-btn {
    background: white;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    display: inline-block;
}

.table-btn:hover {
    background: var(--dark);
    color: white;
}

.table-btn.featured {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.table-btn.featured:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
}

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    border-radius: 0 0 20px 20px;
}

.pricing-note i {
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Pricing Info Banner */
.pricing-info-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.pricing-info-banner .info-item {
    text-align: center;
    padding: 1.5rem;
}

.pricing-info-banner .info-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.pricing-info-banner .info-item.featured {
    background: transparent;
    border-radius: 15px;
}

.pricing-info-banner .info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pricing-info-banner .info-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Restore pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Minimalist Pricing List */
.pricing-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.pricing-product {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-product:last-of-type {
    border-bottom: none;
}

.product-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.pricing-option:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-option.featured {
    background: linear-gradient(to right, rgba(255,215,0,0.1), rgba(255,215,0,0.05));
    border-left: 4px solid var(--primary);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.option-summary {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.option-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.option-link:hover {
    color: var(--dark);
}

/* Locations Section */
.locations {
    padding: 100px 0;
    background: #f8f9fa;
}

.coverage-intro {
    margin-bottom: 4rem;
}

.service-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-type {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.service-type.nationwide {
    border: 3px solid var(--primary);
}

.service-type.regional {
    border: 3px solid #3949ab;
}

.service-type i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-type.nationwide i {
    color: var(--primary);
}

.service-type.regional i {
    color: #3949ab;
}

.service-type h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-coverage {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.service-coverage strong {
    font-size: 1.3rem;
    display: block;
    margin-top: 0.5rem;
}

.service-type.nationwide .service-coverage strong {
    color: var(--primary);
}

.service-type.regional .service-coverage strong {
    color: #3949ab;
}

.service-type p:last-child {
    color: #666;
    line-height: 1.6;
}

.regional-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.regional-header h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.regional-header h3 i {
    color: #3949ab;
    margin-right: 0.5rem;
}

.regional-header p {
    color: #666;
    font-size: 1.1rem;
}

.location-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-region {
    background: white;
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.location-region:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.location-region h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.location-region h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.location-tag {
    background: #f0f0f0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s;
}

.location-tag:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-feature {
    text-align: center;
    padding: 2rem;
}

.location-feature i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.location-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.location-feature p {
    color: #666;
    line-height: 1.6;
}

.location-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.location-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Argus Platform Section */
.argus-platform {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.argus-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    to { transform: translate(-50px, -50px); }
}

.argus-platform .section-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.argus-platform .section-desc {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.argus-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

.argus-feature {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.argus-feature:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.argus-feature.active {
    border-color: var(--primary);
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.argus-showcase {
    margin-bottom: 3rem;
}

.argus-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,215,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #FFD700;
    transition: all 0.3s;
}

.argus-feature:hover .argus-icon,
.argus-feature.active .argus-icon {
    background: rgba(255,215,0,0.3);
    transform: scale(1.1);
}

.argus-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.argus-feature p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Browser Mockup */
.argus-screens {
    position: relative;
}

.browser-mockup {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.browser-header {
    background: #2d2d2d;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    flex: 1;
    background: #1e1e1e;
    padding: 6px 15px;
    border-radius: 20px;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

.browser-content {
    height: 650px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.argus-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.argus-screenshot.active {
    opacity: 1;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
}

.screenshot-placeholder i {
    font-size: 4rem;
    color: #3949ab;
    margin-bottom: 1rem;
}

.screenshot-placeholder h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.screenshot-placeholder p {
    color: #666;
}

.argus-cta {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.argus-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.argus-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Responsive design for locations */
@media (max-width: 768px) {
    .service-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-type {
        padding: 2rem;
    }
    
    .location-region {
        padding: 1.5rem;
    }
}

/* Security Companies CTA Section */
.security-companies-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
}

.security-companies-cta .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.security-companies-cta .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.security-companies-cta .section-desc {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
}

.partner-callout {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,215,0,0.3);
}

.partner-icon {
    flex-shrink: 0;
}

.partner-icon i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.9;
}

.partner-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.partner-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.partner-type h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-type h4 i {
    font-size: 1.2rem;
}

.partner-type p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
    opacity: 0.9;
}

.unified-service {
    background: rgba(255,215,0,0.1);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.unified-service h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.unified-service h4 i {
    font-size: 1.3rem;
}

.unified-service p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
}

.partner-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.partner-benefits span {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-benefits i {
    color: var(--primary);
}

.btn-partner {
    background: var(--primary);
    color: var(--dark);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

@media (max-width: 768px) {
    .partner-callout {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .partner-type h4 {
        justify-content: center;
    }
    
    .partner-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact .section-title {
    color: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.submit-btn:hover:not(:disabled) {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-message i {
    font-size: 1.5rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-features .feature {
    background: linear-gradient(135deg, var(--primary) 0%, #ffc700 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--dark);
}

.contact-features .feature i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-features .feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-features .feature p {
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-features {
        gap: 1rem;
    }
}

/* Footer */
footer {
    background: #0a0a0a;
    color: var(--gray);
    text-align: center;
    padding: 2rem 0;
}

/* Tablet Responsive */
@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .minimal-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .location-visual {
        width: 200px;
        height: 200px;
    }
    
    /* Pricing List Mobile */
    .pricing-list {
        margin-top: 2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-desc {
        font-size: 0.9rem;
    }
    
    .pricing-option {
        padding: 1.2rem;
    }
    
    .option-name {
        font-size: 1rem;
    }
    
    .option-price {
        font-size: 1.3rem;
    }
    
    .option-summary {
        font-size: 0.85rem;
    }
    
    /* WhatsApp Slider Mobile */
    .whatsapp-slider {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .slider-display {
        order: -1;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
        margin: 0 auto;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item.active {
        transform: translateX(5px);
    }
    
    .feature-item:hover {
        transform: translateX(5px);
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    /* Hardware Mobile */
    .hardware-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hardware-image {
        height: 350px;
    }
    
    .hardware-info {
        padding: 1.5rem;
    }
    
    .hardware-info h3 {
        font-size: 1.4rem;
    }
    
    /* Argus Mobile */
    .argus-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .browser-content {
        height: 300px;
    }
    
    .argus-platform .section-title {
        font-size: 2rem;
    }
    
    .argus-cta {
        padding: 2rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    font-size: 1.2rem;
}

/* Build Bundle Floating Button */
.build-bundle-float {
    position: fixed;
    bottom: 30px;
    right: 90px;
    background: var(--dark);
    color: var(--primary);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    font-weight: 600;
    font-size: 0.9rem;
}

.build-bundle-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    background: #333;
    color: var(--primary);
}

.build-bundle-float.visible {
    opacity: 1;
    visibility: visible;
}

.build-bundle-float i {
    font-size: 1.1rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links li:nth-child(7) { transition-delay: 0.7s; }
    .nav-links li:nth-child(8) { transition-delay: 0.8s; }
    .nav-links li:nth-child(9) { transition-delay: 0.9s; }
    .nav-links li:nth-child(10) { transition-delay: 1s; }
    
    .nav-links a {
        font-size: 1.5rem;
        color: var(--dark);
    }
    
    header.scrolled {
        padding: 0.5rem 0;
    }
    
    .logo-img {
        height: 60px !important;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}