/* ========================================
   GeoChip Pro - Inner Pages Styles
   Updated with Consistent Headers & Improved Banners
======================================== */

/* Page Header - Improved Banner */
.page-header {
    padding: 3rem 0 5rem;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 196, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Page Header Content Layout */
.page-header-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-header-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-header-text>p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.page-header-buttons {
    display: flex;
    gap: 1rem;
}

/* Banner Tracking Card */
.page-header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 32px;
    padding: 2.5rem;
    background:
        radial-gradient(ellipse 80% 70% at 50% 40%, rgba(42, 157, 143, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(42, 157, 143, 0.06) 0%, transparent 60%),
        linear-gradient(145deg, #f5f3ff 0%, #faf5ff 50%, #fff0fb 100%);
    overflow: hidden;
}

/* Dot grid overlay */
.page-header-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(42, 157, 143, 0.15) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.5;
    border-radius: inherit;
    pointer-events: none;
}

/* Floating blobs */
.page-header-visual::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    pointer-events: none;
}

.banner-tracking-card {
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(42, 157, 143, 0.03);
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    border: none;
}

.btc-header {
    margin-bottom: 0.875rem;
}

.btc-live {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 1rem;
    background: #e6f6ee;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btc-live i {
    font-size: 0.4rem;
    animation: pulse 1.5s infinite;
}

.btc-map {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #e6f7f5 0%, #d0eeea 100%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(42, 157, 143, 0.08);
}

.btc-vehicles {
    position: relative;
    width: 100%;
    height: 100%;
}

.btc-v {
    position: absolute;
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.15);
    border: none;
    z-index: 2;
}

.btc-v::before {
    content: '\f230';
    font-family: 'remixicon';
    font-size: 1.1rem;
    color: #2a9d8f;
}

.btc-v.active {
    background: linear-gradient(135deg, #21867a 0%, #2a9d8f 100%);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

.btc-v.active::before {
    color: var(--white);
}

/* Active vehicle halo */
.btc-v.active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(42, 157, 143, 0.25);
    animation: btc-halo 2s ease-out infinite;
}

@keyframes btc-halo {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.btc-v.v1 {
    top: 18%;
    left: 12%;
}

.btc-v.v2 {
    top: 48%;
    left: 38%;
}

.btc-v.v3 {
    top: 28%;
    left: 62%;
}

.btc-v.v4 {
    top: 62%;
    left: 78%;
}

.btc-route {
    position: absolute;
    top: 35%;
    left: 20%;
    width: 45%;
    height: 4px;
    background: linear-gradient(90deg, #2a9d8f 0%, #52b5ab 50%, #e9c46a 100%);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(42, 157, 143, 0.3);
}

.btc-stats {
    display: flex;
    gap: 0.75rem;
}

.btc-stat {
    flex: 1;
    padding: 1rem 0.5rem;
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.btc-label {
    display: block;
    font-size: 0.65rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.btc-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #2a9d8f;
    line-height: 1;
}

.btc-unit {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: lowercase;
}

/* Dashcam Banner */
.banner-dashcam {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.dashcam-device {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dd-body {
    width: 160px;
    height: 90px;
    background: linear-gradient(145deg, #2a2a2a 0%, #111 100%);
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(42, 157, 143, 0.3);
}

.dd-lens {
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
    border-radius: 50%;
    border: 3px solid #444;
    position: relative;
    overflow: hidden;
}

.dd-lens-inner {
    position: absolute;
    inset: 8px;
    background: linear-gradient(135deg, #2a9d8f 0%, #52b5ab 100%);
    border-radius: 50%;
    opacity: 0.3;
}

.dd-recording {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.5rem;
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dd-recording i {
    font-size: 0.5rem;
    animation: pulse 1s infinite;
}

.dd-led {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.dd-mount {
    width: 35px;
    height: 25px;
    background: #333;
    margin-top: -3px;
}

.ai-detection-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.ai-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.ai-badge-item i {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
}

.ai-badge-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Industries Banner */
.banner-industries {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ind-icon-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ind-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    min-width: 100px;
}

.ind-icon-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.ind-icon-item.purple i {
    background: linear-gradient(135deg, #2a9d8f 0%, #52b5ab 100%);
}

.ind-icon-item.orange i {
    background: linear-gradient(135deg, #e9c46a 0%, #f97316 100%);
}

.ind-icon-item.teal i {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.ind-icon-item.green i {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.ind-icon-item.pink i {
    background: linear-gradient(135deg, #52b5ab 0%, #db2777 100%);
}

.ind-icon-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* Partners Banner */
.banner-partners {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-stats-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.psv-item {
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.psv-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.psv-label {
    display: block;
    font-size: 0.625rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.partner-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pi-item {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow);
}

/* Contact Banner */
.banner-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cc-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.cc-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.cc-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

.support-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: var(--radius-full);
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
}

.support-badge i {
    font-size: 1.125rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Tracking Features */
.tracking-features {
    padding: 5rem 0;
    background: var(--white);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
}

.feature-visual {
    position: relative;
}

/* Map Demo */
.map-demo {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #e6f7f5 0%, #d0eeea 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-bg-large {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232a9d8f' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm20 20h20v20H20V20zM0 20h20v20H0V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.vehicle-dot {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.vehicle-dot::before {
    content: '\f0d1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary);
}

.vehicle-dot.active {
    background: var(--primary);
}

.vehicle-dot.active::before {
    color: var(--white);
}

.vehicle-dot.v1 {
    top: 20%;
    left: 15%;
}

.vehicle-dot.v2 {
    top: 50%;
    left: 40%;
}

.vehicle-dot.v3 {
    top: 30%;
    left: 65%;
}

.vehicle-dot.v4 {
    top: 65%;
    left: 75%;
}

.pulse-ring {
    position: absolute;
    top: 65%;
    left: 75%;
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Feature Content */
.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(42, 157, 143, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-tag.orange {
    background: rgba(233, 196, 106, 0.1);
    color: var(--secondary);
}

.feature-tag.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #db2777;
}

.feature-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.feature-content>p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.feature-list li i {
    color: var(--success);
    font-size: 1rem;
}

/* Route Demo */
.route-demo {
    padding: 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.route-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 1rem;
}

.route-path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 4px;
    background: var(--gray-200);
    transform: translateY(-50%);
}

.waypoint {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
}

.waypoint.start {
    color: var(--success);
}

.waypoint.mid {
    color: var(--primary);
}

.waypoint.end {
    color: var(--secondary);
}

.route-line-animated {
    position: absolute;
    top: 50%;
    left: 15%;
    width: 25%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: translateY(-50%);
}

.route-line-animated.delay {
    left: 45%;
    width: 25%;
    animation: route-fill 2s ease-in-out infinite;
}

@keyframes route-fill {

    0%,
    100% {
        width: 0;
    }

    50% {
        width: 25%;
    }
}

.route-stats {
    display: flex;
    gap: 1rem;
}

.r-stat {
    flex: 1;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.r-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.r-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Geofence Demo */
.geofence-demo {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fence-circle {
    width: 220px;
    height: 220px;
    border: 3px dashed var(--primary);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fence-center {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.fence-vehicle {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--primary);
    font-size: 1rem;
}

.fence-vehicle.entering {
    top: 20%;
    right: 20%;
    animation: enter-fence 3s ease-in-out infinite;
}

@keyframes enter-fence {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

.fence-alert {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: alert-pulse 1.5s infinite;
}

@keyframes alert-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 5rem 0;
    background: var(--gray-50);
}

.dashboard-mockup {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.dash-sidebar {
    width: 70px;
    background: var(--gray-900);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.dash-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dash-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.dash-item:hover,
.dash-item.active {
    background: rgba(42, 157, 143, 0.2);
    color: var(--white);
}

.dash-main {
    flex: 1;
    padding: 1.5rem;
}

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

.dash-header h3 {
    font-size: 1.25rem;
}

.dash-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.live-indicator i {
    font-size: 0.5rem;
    animation: pulse 1.5s infinite;
}

.dash-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    cursor: pointer;
}

.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-stat-card {
    padding: 1rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.dash-stat-card i {
    width: 40px;
    height: 40px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.d-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.d-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.dash-map-area {
    height: 200px;
    background: linear-gradient(135deg, #e6f7f5 0%, #d0eeea 100%);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.mp-vehicle {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    color: var(--primary);
    font-size: 0.875rem;
}

.mp-vehicle.v1 {
    top: 20%;
    left: 20%;
}

.mp-vehicle.v2 {
    top: 50%;
    left: 45%;
}

.mp-vehicle.v3 {
    top: 30%;
    left: 70%;
}

.mp-vehicle.v4 {
    top: 60%;
    left: 60%;
}

/* Pricing */
.tracking-pricing {
    padding: 5rem 0;
    background: var(--white);
}

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

.pricing-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

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

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .period {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.pricing-features li i {
    color: var(--success);
}

/* AI Features */
.ai-features {
    padding: 5rem 0;
    background: var(--white);
}

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

.ai-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.ai-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.ai-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.ai-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.ai-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    position: relative;
}

.ai-icon.orange {
    background: linear-gradient(135deg, #e9c46a 0%, #f97316 100%);
}

.ai-icon.teal {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.ai-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(42, 157, 143, 0.3);
    border-radius: 50%;
    animation: ai-pulse 2s infinite;
}

@keyframes ai-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.ai-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.ai-card>p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ai-list {
    text-align: left;
}

.ai-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.ai-list li i {
    color: var(--success);
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #f5f3ff 50%, #fafafa 100%);
}

.how-it-works .section-header {
    margin-bottom: 3rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    gap: 0.5rem;
}

.step-line {
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, rgba(42, 157, 143, 0.25) 0%, rgba(42, 157, 143, 0.5) 30%, rgba(233, 196, 106, 0.5) 70%, rgba(233, 196, 106, 0.25) 100%);
    border-radius: 3px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 220px;
    position: relative;
    z-index: 1;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 157, 143, 0.12);
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.15);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.step-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2a9d8f 0%, #52b5ab 50%, #e9c46a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.3);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    line-height: 1.3;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Safety Stats */
.safety-stats {
    padding: 2.5rem 0;
    background: var(--white);
}

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

.stat-item-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.stat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.stat-icon.orange {
    background: linear-gradient(135deg, #e9c46a 0%, #f97316 100%);
}

.stat-icon.teal {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.stat-number-large {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.3;
}

/* Device Specs */
.device-specs {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.specs-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.specs-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.spec-item i {
    width: 48px;
    height: 48px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.spec-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.spec-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Camera Mockup */
.camera-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cam-body {
    width: 180px;
    height: 100px;
    background: linear-gradient(145deg, #333 0%, #111 100%);
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.cam-lens {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
    border-radius: 50%;
    border: 3px solid #444;
    position: relative;
    overflow: hidden;
}

.lens-reflection {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.cam-led {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.cam-brand {
    position: absolute;
    bottom: 10px;
    font-size: 0.625rem;
    color: var(--gray-500);
    letter-spacing: 0.1em;
}

.cam-mount {
    width: 40px;
    height: 30px;
    background: #333;
    margin-top: -5px;
}

/* Testimonial Single */
.dashcam-testimonial {
    padding: 5rem 0;
    background: var(--white);
}

.testimonial-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-large {
    margin-bottom: 2rem;
}

.quote-large i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.quote-large p {
    font-size: 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author-large img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.testimonial-author-large h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.testimonial-author-large span {
    font-size: 1rem;
    color: var(--gray-500);
}

/* Industries Detail */
.industries-detail {
    padding: 5rem 0;
    background: var(--white);
}

.industry-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.industry-detail-card.reverse {
    direction: rtl;
}

.industry-detail-card.reverse>* {
    direction: ltr;
}

.industry-detail-card:last-child {
    border-bottom: none;
}

.industry-visual {
    position: relative;
    height: 400px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.industry-visual.purple {
    background: linear-gradient(135deg, #e6f7f5 0%, #d0eeea 100%);
}

.industry-visual.orange {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.industry-visual.teal {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
}

.industry-visual.green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.industry-visual.pink {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.ind-icon-large {
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: var(--shadow-xl);
}

.industry-visual.purple .ind-icon-large {
    color: #2a9d8f;
}

.industry-visual.orange .ind-icon-large {
    color: #d97706;
}

.industry-visual.teal .ind-icon-large {
    color: #0891b2;
}

.industry-visual.green .ind-icon-large {
    color: #059669;
}

.industry-visual.pink .ind-icon-large {
    color: #db2777;
}

.floating-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
}

.f-stat {
    flex: 1;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.f-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.f-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.industry-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.industry-info>p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.benefit-item {
    padding: 1.25rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.benefit-item i {
    width: 44px;
    height: 44px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Case Studies */
.case-studies {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.case-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.case-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.case-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.case-industry {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.case-results {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-result {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: var(--radius);
}

.cr-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.cr-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.case-link:hover {
    gap: 0.75rem;
}

/* Partner Types */
.partner-types {
    padding: 5rem 0;
    background: var(--white);
}

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

.partner-type-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.partner-type-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.partner-type-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pt-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.pt-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.pt-icon.orange {
    background: linear-gradient(135deg, #e9c46a 0%, #f97316 100%);
}

.pt-icon.teal {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.pt-icon.pink {
    background: linear-gradient(135deg, #52b5ab 0%, #db2777 100%);
}

.partner-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.partner-type-card>p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.pt-benefits {
    margin-bottom: 2rem;
}

.pt-benefits li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.pt-benefits li i {
    color: var(--success);
}

/* Partner Stats */
.partner-stats {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.pstat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.pstat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pstat-label {
    font-size: 1rem;
    color: var(--gray-500);
}

/* Partner Logos */
.partner-logos {
    padding: 5rem 0;
    background: var(--white);
}

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

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.logo-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.logo-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-item span {
    font-weight: 600;
    color: var(--gray-700);
}

/* Why Partner */
.why-partner {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.wp-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wp-content>p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.wp-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wp-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wp-item i {
    width: 50px;
    height: 50px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.wp-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.wp-item p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* Growth Chart */
.wp-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    height: 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(180deg, #d0eeea 0%, #e6f7f5 100%);
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 1rem;
    transition: var(--transition);
}

.chart-bar.highlight {
    background: var(--gradient-primary);
}

.chart-bar span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.chart-bar.highlight span {
    color: var(--white);
}

.growth-label {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Partner Testimonials */
.partner-testimonials {
    padding: 5rem 0;
    background: var(--white);
}

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

.ptest-card {
    padding: 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.ptest-quote {
    margin-bottom: 1.5rem;
}

.ptest-quote i {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 0.75rem;
}

.ptest-quote p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.ptest-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ptest-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.ptest-author h4 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.ptest-author span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Partner CTA */
.partner-cta {
    padding: 4rem 0;
    background: var(--gray-50);
}

.pcta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    color: var(--white);
}

.pcta-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.pcta-content>p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.pcta-benefits {
    display: flex;
    gap: 2rem;
}

.pcta-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.pcta-benefits span i {
    color: var(--secondary);
}

.pcta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 200px;
}

.pcta-action .btn {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pcta-action .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.pcta-action p {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.pcta-action p a {
    color: var(--secondary);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-panel h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-panel>p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cm-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.cm-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cm-details a {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cm-details span,
.cm-details p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.contact-social h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cs-links {
    display: flex;
    gap: 0.75rem;
}

.cs-links a {
    width: 44px;
    height: 44px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cs-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Contact Form */
.contact-form-panel {
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

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

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
    color: var(--gray-700);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-group select:hover {
    border-color: var(--gray-300);
}

.form-group select:invalid,
.form-group select option[value=""] {
    color: var(--gray-500);
}

.form-group select option {
    color: var(--gray-800);
}

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

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

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

.form-note i {
    color: var(--success);
    margin-right: 0.25rem;
}

/* Quick Actions */
.quick-actions {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.qa-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.qa-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.qa-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.qa-icon.orange {
    background: linear-gradient(135deg, #e9c46a 0%, #f97316 100%);
}

.qa-icon.teal {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.qa-icon.pink {
    background: linear-gradient(135deg, #52b5ab 0%, #db2777 100%);
}

.qa-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.qa-card>p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.qa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.qa-link:hover {
    gap: 0.625rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.map-container {
    height: 500px;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-locations {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    overflow-y: auto;
    max-height: 500px;
}

.map-loc-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.map-loc-item:hover,
.map-loc-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.map-loc-item.active {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.ml-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.ml-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.ml-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.ml-info a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

/* Office Locations */
.office-locations {
    padding: 5rem 0;
    background: var(--white);
}

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

.location-card {
    padding: 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.loc-image {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.location-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.location-card>p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-card>a {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-header-text h1 {
        font-size: 2.5rem;
    }

    .page-header-buttons {
        justify-content: center;
    }

    .page-header-visual {
        display: none;
    }

    .feature-block,
    .industry-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-block.reverse,
    .industry-detail-card.reverse {
        direction: ltr;
    }

    .pricing-grid,
    .ai-grid,
    .stats-banner,
    .pstats-grid,
    .logos-grid,
    .case-grid,
    .partner-grid,
    .wp-wrapper,
    .contact-wrapper,
    .qa-grid,
    .locations-grid,
    .ptest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 350px;
        min-height: 350px;
    }

    .map-locations {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-height: none;
    }

    .map-loc-item {
        margin-bottom: 0;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .step {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .step:hover {
        box-shadow: 0 8px 24px rgba(42, 157, 143, 0.12);
    }

    .step-line {
        display: none;
    }

    .pcta-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .pcta-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
        min-height: auto;
    }

    .page-header-text h1 {
        font-size: 2rem;
    }

    .page-header-buttons {
        flex-direction: column;
    }

    .pricing-grid,
    .ai-grid,
    .stats-banner,
    .pstats-grid,
    .logos-grid,
    .case-grid,
    .partner-grid,
    .wp-wrapper,
    .contact-wrapper,
    .qa-grid,
    .locations-grid,
    .ptest-grid,
    .feature-list,
    .benefits-grid,
    .specs-grid,
    .dash-stats-row {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .stat-item-large {
        flex-direction: column;
        text-align: center;
    }

    .growth-chart {
        height: 180px;
    }

    .chart-bar {
        width: 40px;
    }

    .map-locations {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
        min-height: 300px;
    }
}

/* ========================================
   Legal / Policy Pages - Banner
======================================== */
.legal-page-banner {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 45%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-page-banner::before {
    content: '';
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(42, 157, 143, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.legal-page-banner::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.legal-page-banner .container {
    position: relative;
    z-index: 1;
}

.legal-page-banner .breadcrumb {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.legal-banner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 12px 40px rgba(42, 157, 143, 0.25);
}

.legal-banner-icon.privacy {
    background: linear-gradient(135deg, #2a9d8f 0%, #52b5ab 100%);
}

.legal-banner-icon.terms {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.legal-banner-icon.cookie {
    background: linear-gradient(135deg, #e9c46a 0%, #f97316 100%);
}

.legal-page-banner h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.legal-page-banner .banner-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.legal-banner-badge i {
    font-size: 0.7rem;
}

#navbarNav a.rounded-pill {
border: 1px solid #ccc !important;
}

@media (max-width: 768px) {
    .legal-page-banner {
        padding: 6rem 0 3.5rem;
    }

    .legal-banner-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .legal-page-banner h1 {
        font-size: 2rem;
    }

    .legal-page-banner .banner-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   Legal / Policy Pages (Privacy, Terms, Cookie)
======================================== */
.legal-page-content {
    padding: 3rem 0 4rem;
    background: var(--white);
}

.legal-page-content .container {
    max-width: 800px;
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block:last-of-type {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.375rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-block h2 .legal-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.legal-block h2 .legal-icon.purple {
    background: linear-gradient(135deg, #2a9d8f 0%, #52b5ab 100%);
}

.legal-block h2 .legal-icon.teal {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.legal-block h2 .legal-icon.orange {
    background: linear-gradient(135deg, #e9c46a 0%, #f97316 100%);
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-block ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.legal-block a {
    color: var(--primary);
    font-weight: 500;
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #faf5ff 0%, #fff7ed 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.legal-cta p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .legal-page-content {
        padding: 2rem 0 3rem;
    }

    .legal-block h2 {
        font-size: 1.2rem;
        flex-wrap: wrap;
    }
}

/* ========================================
   Support Portal (Help Center) - Portal-style layout
======================================== */
.support-portal-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-portal-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.support-portal-hero .container {
    position: relative;
    z-index: 1;
}

.support-portal-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.support-portal-hero .hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.support-portal-search {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.support-portal-search input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.25rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.support-portal-search input::placeholder {
    color: var(--gray-400);
}

.support-portal-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.15);
}

.support-portal-search .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.125rem;
    pointer-events: none;
}

.support-portal-categories {
    padding: 4rem 0 3rem;
}

.support-portal-categories .section-header {
    margin-bottom: 2.5rem;
}

.support-portal-categories .section-title {
    font-size: 1.75rem;
}

.support-portal-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 420px));
    gap: 1.5rem;
    justify-content: center;
}

.support-portal-category-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: left;
}

.support-portal-category-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.support-portal-category-card .cat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.support-portal-category-card .cat-icon.purple {
    background: linear-gradient(135deg, #2a9d8f 0%, #52b5ab 100%);
}

.support-portal-category-card .cat-icon.orange {
    background: linear-gradient(135deg, #e9c46a 0%, #f97316 100%);
}

.support-portal-category-card .cat-icon.teal {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.support-portal-category-card .cat-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.support-portal-category-card .cat-icon.pink {
    background: linear-gradient(135deg, #52b5ab 0%, #db2777 100%);
}

.support-portal-category-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.support-portal-category-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.support-portal-category-card .cat-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.support-portal-category-card .cat-link:hover {
    color: var(--primary-dark);
}

.support-portal-category-card .cat-link i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.support-portal-category-card:hover .cat-link i {
    transform: translateX(4px);
}

.support-portal-popular {
    padding: 3rem 0;
    background: var(--gray-50);
}

.support-portal-popular .section-header {
    margin-bottom: 2rem;
}

.support-portal-popular .section-title {
    font-size: 1.75rem;
}

.support-portal-articles {
    display: grid;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.support-portal-article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s;
}

.support-portal-article-item:last-child {
    border-bottom: none;
}

.support-portal-article-item:hover {
    background: var(--gray-50);
}

.support-portal-article-item a {
    font-weight: 500;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-portal-article-item a:hover {
    color: var(--primary);
}

.support-portal-article-item a i {
    color: var(--primary);
    font-size: 0.875rem;
}

.support-portal-article-item .arrow {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.support-portal-article-item.disabled-article {
    cursor: default;
    opacity: 0.55;
}

.support-portal-article-item.disabled-article:hover {
    background: none;
}

.support-portal-article-item.disabled-article span:first-child {
    font-weight: 500;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-portal-article-item.disabled-article span:first-child i {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.coming-soon-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50rem;
    padding: 0.2rem 0.65rem;
    white-space: nowrap;
}

.support-portal-cta {
    padding: 4rem 0;
}

.support-portal-cta-inner {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-portal-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.support-portal-cta-inner h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.support-portal-cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    position: relative;
}

.support-portal-cta-inner .btn {
    position: relative;
}

.support-portal-faq {
    padding: 3rem 0 4rem;
}

.support-portal-faq .section-header {
    margin-bottom: 2rem;
}

.support-portal-faq .section-title {
    font-size: 1.75rem;
}

.support-portal-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.support-portal-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
}

.support-portal-faq-item:last-child {
    margin-bottom: 0;
}

.support-portal-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.support-portal-faq-q:hover {
    background: var(--gray-50);
}

.support-portal-faq-q i {
    color: var(--primary);
    font-size: 0.875rem;
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.support-portal-faq-item.open .support-portal-faq-q i {
    transform: rotate(180deg);
}

.support-portal-faq-a {
    padding: 0 1.5rem 1.25rem;
    display: none;
}

.support-portal-faq-item.open .support-portal-faq-a {
    display: block;
}

.support-portal-faq-a p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    padding-top: 0.25rem;
}

@media (max-width: 768px) {
    .support-portal-hero h1 {
        font-size: 2rem;
    }

    .support-portal-category-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Bootstrap Navbar Compatibility Reset
   Neutralises css/style.css overrides so
   inner-page nav matches the home page
======================================== */

/* 1. Restore navbar padding to match assets/css/style.css (home page value) */
nav.navbar.navbar-expand-lg {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb !important;
    z-index: 1030;
}

nav.navbar.navbar-expand-lg.scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

/* 2. Fix Bootstrap dropdown – css/style.css sets opacity:0/visibility:hidden on ALL
   .dropdown-menu which prevents Bootstrap's .show class from making it visible.
   Restore display-based toggling for Bootstrap's navbar dropdowns. */
nav.navbar .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    display: none;
    position: absolute;
}

nav.navbar .dropdown-menu.show {
    display: block !important;
}

/* 3. Ensure nav links and buttons stay on one line */
nav.navbar .navbar-collapse {
    flex-wrap: nowrap;
}

nav.navbar .navbar-nav .nav-link {
    white-space: nowrap;
}

nav.navbar .btn,
nav.navbar button.btn {
    white-space: nowrap;
}

/* ========================================
   CTA Section – inner page overrides
   Fixes heading colour & removes body-bg
   bleed between CTA and footer
======================================== */
.cta-section {
    margin-bottom: 0;
}

/* Force white on all text inside the dark CTA banner */
.cta-section h2,
.cta-section h3,
.cta-section p,
.cta-section span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Ensure btn-white and btn-outline-white render correctly inside Bootstrap */
.cta-section .btn-white {
    background: #ffffff;
    color: #2a9d8f;
    border: none;
}

.cta-section .btn-white:hover {
    background: #f5f5f5;
    color: #21867a;
    transform: translateY(-3px);
}

.cta-section .btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-section .btn-outline-white:hover {
    background: #ffffff;
    color: #2a9d8f;
}

/* ========================================
   Demo Modal – force white text in left
   gradient panel (overrides css/style.css
   heading colour vars)
======================================== */
#demoModal .modal-content [style*="background: linear-gradient"] h2,
#demoModal .modal-content [style*="background: linear-gradient"] h3,
#demoModal .modal-content [style*="background: linear-gradient"] h4,
#demoModal .modal-content [style*="background: linear-gradient"] h5,
#demoModal .modal-content [style*="background: linear-gradient"] h6,
#demoModal .modal-content [style*="background: linear-gradient"] p,
#demoModal .modal-content [style*="background: linear-gradient"] li,
#demoModal .modal-content [style*="background: linear-gradient"] small,
#demoModal .modal-content [style*="background: linear-gradient"] span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* ── Utility: pill/rounded button ── */
.btn-pill {
  border-radius: 50rem !important;
  padding: 0.75rem 1.5rem;
}
