/* WiFi Point Page Styles */

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (max-width: 991px) {
    .banner {
        margin-top: 0 !important;
    }
}

/* Hero Section with Video Slider */
.wifi-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000000;
}

.wifi-hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title-wrapper {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-tabs-wrapper {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-tabs {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-tab-item {
    position: relative;
}

.hero-tab {
    position: relative;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 20px;
    border-radius: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.hero-tab .progress-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-tab .progress-rect {
    transition: stroke-dashoffset 0.1s linear;
}

.hero-tab .tab-text {
    position: relative;
    z-index: 2;
    display: block;
}

.hero-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero-tab.active {
    color: #ffffff;
}

.hero-tab.active .progress-rect {
    stroke-dashoffset: 0;
    animation: progressAnimation 5s linear forwards;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-nav-btn .nav-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: none;
    border-right: none;
}

.prev-btn .nav-icon {
    transform: rotate(45deg);
    margin-left: 5px;
}

.next-btn .nav-icon {
    transform: rotate(-135deg);
    margin-right: 5px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-video.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

@keyframes progressAnimation {
    from {
        stroke-dashoffset: 460;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* WiFi Perfected Section */
.wifi-perfected-section {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

/* Feature Tabs Container */
.feature-tabs-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
    overflow: visible;
}

.feature-tabs-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.feature-tabs-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.feature-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.feature-tab-item {
    flex-shrink: 0;
    position: relative;
}

.feature-tab {
    position: relative;
    background: transparent;
    border: none;
    color: #666;
    padding: 8px 20px;
    border-radius: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    min-width: fit-content;
}

.feature-tab .feature-progress-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feature-tab .feature-progress-rect {
    transition: stroke-dashoffset 0.1s linear;
}

.feature-tab .feature-tab-text {
    position: relative;
    z-index: 2;
    display: block;
}

.feature-tab:hover {
    color: #333;
}

.feature-tab.active {
    color: #00BCD4;
}

.feature-tab.active .feature-progress-rect {
    stroke-dashoffset: 0;
    animation: featureProgressAnimation 5s linear forwards;
}

.feature-scroll-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    visibility: visible;
    opacity: 1;
}

.feature-scroll-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.feature-scroll-btn:hover .scroll-icon {
    border-color: #00BCD4 !important;
}

.feature-scroll-btn .scroll-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-top: none;
    border-right: none;
    visibility: visible;
    opacity: 1;
    display: block;
}

.feature-scroll-left .scroll-icon {
    transform: rotate(45deg);
    margin-left: 5px;
    border-color: #333 !important;
}

.feature-scroll-right .scroll-icon {
    transform: rotate(-135deg);
    margin-right: 5px;
    border-color: #333 !important;
}

/* Feature Display Container */
.feature-display-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-display-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: visible;
}

.feature-display-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-display-image {
    position: absolute;
    top: -320px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.feature-display-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Video Container - positioned inside monitor screen */
.feature-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Adjust these values to position video inside monitor screen area */
    /* These percentages position the video in the center screen area of the monitor */
    top: 8%;
    left: 12%;
    width: 76%;
    height: 68%;
    overflow: hidden;
    border-radius: 2px;
    background: #000000;
}

.feature-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.feature-video.active {
    opacity: 1;
    pointer-events: auto;
}

@keyframes featureProgressAnimation {
    from {
        stroke-dashoffset: 500;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Software Interface */
.software-interface {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.interface-header {
    background: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.interface-logo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.device-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.device-name {
    font-weight: 600;
    color: #1a1a1a;
}

.device-version,
.device-status {
    font-size: 12px;
    color: #666;
}

.packet-capture-btn {
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.packet-capture-btn:hover {
    background: -webkit-linear-gradient(315deg, #8BA010 0%, #00A5B8 100%);
    background: linear-gradient(315deg, #8BA010 0%, #00A5B8 100%);
}

.interface-nav {
    display: flex;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
}

.nav-tab {
    background: transparent;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-tab:hover {
    color: #00BCD4;
    background: #f8f8f8;
}

.nav-tab.active {
    color: #00BCD4;
    border-bottom-color: #00BCD4;
    font-weight: 600;
}

.interface-content {
    padding: 30px;
    background: #fafafa;
}

.radio-bands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.radio-band {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.radio-band h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.radio-band p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.airtime-graph {
    margin-bottom: 30px;
}

.airtime-graph h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.graph-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.channel-scan {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.channel-scan h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.channel-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.channel-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 80px;
}

.channel-bars {
    display: flex;
    gap: 5px;
    flex: 1;
}

.channel-bar {
    height: 30px;
    border-radius: 4px;
    min-width: 20px;
}

/* Product Series Section */
.product-series-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.product-category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: #f5f5f5;
    border-color: #00BCD4;
    color: #00BCD4;
}

.category-tab.active {
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    border-color: #00BCD4;
    color: #ffffff;
}

.product-category {
    display: none;
}

.product-category.active {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ap-square {
    width: 150px;
    height: 150px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ap-rectangle {
    width: 200px;
    height: 120px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ap-circle {
    width: 150px;
    height: 150px;
    background: #ffffff;
    border: 3px solid #00BCD4;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.2);
    position: relative;
}

.ap-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid #00BCD4;
    border-radius: 50%;
    opacity: 0.6;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-action {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-action:hover {
    border-color: #00BCD4;
    color: #00BCD4;
}

.product-action.compare {
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    border-color: #00BCD4;
    color: #ffffff;
}

.product-action.compare:hover {
    background: -webkit-linear-gradient(315deg, #8BA010 0%, #00A5B8 100%);
    background: linear-gradient(315deg, #8BA010 0%, #00A5B8 100%);
    border-color: #00A5B8;
}

/* Comparison Table */
.comparison-section {
    margin-top: 60px;
}

.comparison-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-container {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: #f8f8f8;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
}

.comparison-table td {
    padding: 20px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:hover {
    background: #f8f8f8;
}

.checkmark {
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
}

/* Feature Icons Section */
.feature-icons-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-icons-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.feature-icons-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    border-radius: 2px;
}

.feature-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.feature-card-inner {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-linear-gradient(135deg, rgba(161, 192, 18, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
    background: linear-gradient(135deg, rgba(161, 192, 18, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
}

.feature-card:hover .feature-icon-svg {
    color: #ffffff;
}

.feature-card:hover .feature-card-video {
    opacity: 1;
    transform: scale(1.05);
}

.feature-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon-svg {
    width: 40px;
    height: 40px;
    color: #00BCD4;
    transition: color 0.4s ease;
}

.feature-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card-title {
    color: #00BCD4;
}

.feature-card-body {
    position: relative;
    z-index: 1;
    flex: 1;
}

.feature-card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card-description {
    color: #555;
}

.feature-card-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.feature-card-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.feature-card-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-search-input {
    width: 100%;
    padding: 15px 120px 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-gpt-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #00BCD4;
}

.faq-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 50px;
}

.help-button {
    display: inline-block;
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.help-button:hover {
    background: -webkit-linear-gradient(315deg, #8BA010 0%, #00A5B8 100%);
    background: linear-gradient(315deg, #8BA010 0%, #00A5B8 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-tabs-wrapper {
        bottom: 5%;
    }

    .hero-tab {
        min-width: 150px;
        padding: 6px 16px;
        font-size: 13px;
    }

    .section-title {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .feature-icons-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .feature-icons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card-inner {
        padding: 30px;
    }

    .feature-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .wifi-hero-section {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-title-wrapper {
        top: 15%;
    }

    .hero-tabs-wrapper {
        bottom: 5%;
        flex-direction: column;
        gap: 15px;
    }

    .hero-tabs {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .hero-tab {
        min-width: 100%;
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-nav-btn {
        width: 35px;
        height: 35px;
    }

    .hero-nav-btn .nav-icon {
        width: 15px;
        height: 15px;
    }

    .feature-tabs-container {
        gap: 10px;
    }

    .feature-tab {
        padding: 6px 16px;
        font-size: 12px;
    }

    .feature-icons-section {
        padding: 60px 0;
    }

    .feature-icons-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .feature-icons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-inner {
        padding: 25px;
    }

    .feature-card-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .feature-icon-wrapper {
        margin: 0 auto;
    }

    .feature-card-title {
        font-size: 18px;
    }

    .feature-card-description {
        font-size: 14px;
    }

    .feature-scroll-btn {
        width: 35px;
        height: 35px;
    }

    .feature-scroll-btn .scroll-icon {
        width: 15px;
        height: 15px;
    }

    .feature-display-wrapper {
        padding-bottom: 75%; /* Adjust for mobile */
    }

    .feature-video-container {
        top: 10%;
        left: 14%;
        width: 72%;
        height: 65%;
    }

    .section-title {
        font-size: 28px;
    }

    .interface-content {
        padding: 20px;
    }

    .radio-bands {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-container {
        overflow-x: scroll;
    }

    .feature-icons-grid {
        grid-template-columns: 1fr;
    }

    .faq-search-input {
        padding: 12px 100px 12px 15px;
        font-size: 14px;
    }

    .faq-gpt-label {
        font-size: 10px;
        padding: 4px 8px;
    }
}

@media (max-width: 576px) {
    .wifi-hero-section {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-title-wrapper {
        top: 10%;
        padding: 0 15px;
    }

    .hero-tabs-wrapper {
        bottom: 3%;
        padding: 0 15px;
    }

    .hero-tab {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-nav-btn {
        width: 30px;
        height: 30px;
    }

    .hero-nav-btn .nav-icon {
        width: 12px;
        height: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-tabs-container {
        gap: 8px;
    }

    .feature-tab {
        padding: 6px 12px;
        font-size: 11px;
    }

    .feature-scroll-btn {
        width: 30px;
        height: 30px;
    }

    .feature-scroll-btn .scroll-icon {
        width: 12px;
        height: 12px;
    }

    .feature-display-wrapper {
        padding-bottom: 100%; /* Adjust for small mobile */
    }

    .feature-video-container {
        top: 12%;
        left: 16%;
        width: 68%;
        height: 60%;
    }

    .product-card {
        padding: 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 12px;
    }
}

/* Product Series Section - New Clean Design */
.product-series-section-new {
    padding: 80px 0;
    background: #f8f8f8;
}

.product-series-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.series-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.series-tab {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.series-tab:hover {
    border-color: #00BCD4;
    color: #00BCD4;
}

.series-tab.active {
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    border-color: #00BCD4;
    color: #ffffff;
}

.series-label-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.series-label {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    display: none;
    margin: 0;
}

.series-label.active {
    display: block;
    color: #00BCD4;
}

.products-container-wrapper {
    position: relative;
    margin-bottom: 60px;
    overflow: visible;
}

.products-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    visibility: visible;
    opacity: 1;
}

.products-scroll-btn:hover {
    background: #00BCD4;
    border-color: #00BCD4;
    color: #ffffff;
}

.products-scroll-btn.scroll-left {
    left: -25px;
}

.products-scroll-btn.scroll-right {
    right: -25px;
}

.products-scroll-btn svg {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    visibility: visible;
    opacity: 1;
    color: inherit;
}

.products-scroll-btn svg path {
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
    stroke-linecap: round;
    stroke-linejoin: round;
    visibility: visible !important;
    opacity: 1 !important;
}

.products-container {
    overflow: hidden;
    padding: 0 40px;
}

.products-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #00BCD4 #f0f0f0;
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: #00BCD4;
    border-radius: 4px;
}

.product-item {
    min-width: 280px;
    max-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: none;
    flex-direction: column;
    flex-shrink: 0;
}

.product-item.active {
    display: flex;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-item-image-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.product-item-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.product-item-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.product-item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.product-compare-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.product-compare-btn:hover {
    border-color: #00BCD4;
    color: #00BCD4;
    background: rgba(0, 188, 212, 0.05);
}

.product-compare-btn.active {
    background: -webkit-linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    background: linear-gradient(315deg, #A1C012 0%, #00BCD4 100%);
    border-color: #00BCD4;
    color: #ffffff;
}

/* Comparison Section - Table Design */
.comparison-section-new {
    width: 100%;
    padding: 60px 20px;
    background: #f8f8f8;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: #f8f8f8;
}

.comparison-table th {
    padding: 20px;
    text-align: center;
    vertical-align: top;
    border-bottom: 2px solid #e0e0e0;
}

.comparison-feature-col {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    width: 25%;
    background: #f8f8f8;
}

.comparison-product-col {
    width: 25%;
    vertical-align: middle;
}

.comparison-product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.comparison-product-image-container {
    width: 180px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
}

.comparison-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.comparison-product-info {
    text-align: center;
}

.comparison-product-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.comparison-product-badge {
    display: inline-block;
    background: #00BCD4;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.comparison-product-col.placeholder {
    opacity: 0.5;
}

.comparison-product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.comparison-placeholder-icon {
    width: 50px;
    height: 50px;
    opacity: 0.3;
}

.comparison-placeholder-text {
    font-size: 14px;
    color: #999;
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:hover {
    background: #fafafa;
}

.comparison-feature-group {
    background: #f8f8f8;
}

.comparison-feature-group td {
    padding: 15px 20px;
    border-bottom: 2px solid #e0e0e0;
}

.comparison-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.comparison-feature-label {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    vertical-align: middle;
    background: #fafafa;
}

.comparison-feature-value {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
    vertical-align: middle;
    line-height: 1.6;
}

.comparison-feature-value.empty {
    color: #ccc;
}

.comparison-checkmark {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #00BCD4;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    font-weight: bold;
}

.comparison-note {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #999;
    font-style: italic;
}

.comparison-note p {
    margin: 0;
}

/* Responsive Styles for Product Series */
@media (max-width: 768px) {
    .product-series-section-new {
        padding: 40px 0;
    }

    .product-series-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .series-tabs-wrapper {
        gap: 10px;
    }

    .series-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .series-label {
        font-size: 24px;
    }

    .products-scroll-btn {
        width: 40px;
        height: 40px;
    }

    .products-scroll-btn.scroll-left {
        left: -20px;
    }

    .products-scroll-btn.scroll-right {
        right: -20px;
    }

    .products-container {
        padding: 0 30px;
    }

    .product-item {
        min-width: 250px;
        max-width: 250px;
        padding: 20px;
    }

    .comparison-section-new {
        padding: 40px 10px;
    }

    .comparison-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .comparison-table-wrapper {
        padding: 15px;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 13px;
    }

    .comparison-product-image-container {
        width: 120px;
        height: 100px;
    }

    .comparison-product-name {
        font-size: 16px;
    }

    .comparison-feature-title {
        font-size: 16px;
    }

    .comparison-feature-label {
        font-size: 14px;
        padding: 12px;
    }

    .comparison-feature-value {
        font-size: 13px;
        padding: 12px;
    }
}

/* Animation Classes */
.feature-icon-card.animate,
.product-card.animate {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

