/* ==========================================
   Market Your Territory - Custom Design System
   ========================================== */

/* Design Tokens & Variables */
:root {
    --bg-primary: #060913;
    --bg-secondary: #0d1527;
    --bg-card: rgba(13, 22, 42, 0.75);
    --bg-navbar: rgba(6, 9, 19, 0.85);
    
    /* Logo Colors */
    --color-navy-dark: #0f2d59;
    --color-navy-light: #1e4b85;
    --color-navy-glow: rgba(30, 75, 133, 0.35);
    
    --color-orange: #ff7a00;
    --color-orange-hover: #ff9100;
    --color-orange-glow: rgba(255, 122, 0, 0.25);
    --color-orange-grad: linear-gradient(135deg, #ff7a00 0%, #ff5100 100%);
    
    /* Neutral colors */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-active: rgba(255, 122, 0, 0.5);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Layout Constants */
    --container-width: 1200px;
    --nav-height: 80px;
}

/* Base resets & standards */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

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

/* Background Gradients Glows */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-navy-glow) 0%, rgba(6, 9, 19, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-spring);
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
    display: flex;
    width: 100%;
    text-align: center;
}

.badge {
    display: inline-flex;
    padding: 0.35rem 1rem;
    background: rgba(255, 122, 0, 0.1);
    color: var(--color-orange);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Header & Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--bg-navbar);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: #060913;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--color-orange);
}

.nav-btn {
    background: var(--color-orange-grad);
    color: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--color-orange-glow);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

/* Dropdown Navigation Menu */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-toggle .arrow {
    font-size: 0.65rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.has-dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
    color: var(--color-orange);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 260px;
    background: #080d1a;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.75rem 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s ease;
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    text-align: left;
}

.dropdown-menu li a:hover {
    color: #ffffff;
    background: rgba(255, 122, 0, 0.08);
    border-left: 3px solid var(--color-orange);
    padding-left: calc(1.5rem - 3px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 2rem);
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-orange-glow) 0%, rgba(6, 9, 19, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #ffffff 40%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Floating Mockup Visual in Hero */
.hero-visual {
    position: relative;
}

.visual-mockup-wrapper {
    position: relative;
    z-index: 2;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.mockup-frame {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.mockup-url {
    margin-left: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 2rem;
    border-radius: 99px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mockup-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 1rem;
}

.chat-preview .widget-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.chat-preview .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
}

.widget-chat-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.widget-chat-box .msg {
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    max-width: 85%;
}

.widget-chat-box .msg.bot {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-start;
}

.widget-chat-box .msg.user {
    background: var(--color-orange-grad);
    align-self: flex-end;
}

.widget-chat-box .msg.typing::after {
    content: '...';
    animation: typingDots 1.5s infinite;
}

@keyframes typingDots {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
}

.performance-preview {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
    align-items: center;
}

.perf-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.perf-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-orange);
}

.perf-bar-chart {
    grid-column: span 2;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 40px;
}

.perf-bar-chart .bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-navy-dark), var(--color-orange));
    border-radius: 2px;
}

/* Services Section Styling */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem 0;
}

.section-header p {
    color: var(--text-muted);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-orange-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-active);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    background: rgba(30, 75, 133, 0.2);
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-orange-grad);
    color: #ffffff;
    transform: scale(1.1);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-learn-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-orange);
    display: inline-flex;
    align-items: center;
}

.service-card:hover .service-learn-more {
    color: #ffffff;
    text-decoration: underline;
}

/* Playgrounds Style Rules */
.playground-bg-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--color-navy-glow) 0%, rgba(6, 9, 19, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.playground-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

.playground-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.playground-card-header {
    margin-bottom: 2rem;
}

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

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

/* Live Chat Widget UI */
.chat-container {
    background: #080d1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chat-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0f2d59;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 122, 0, 0.3);
}

.bot-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

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

.bot-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.bot-status {
    font-size: 0.75rem;
    color: #10b981;
}

.chat-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
}

.chat-messages .message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.chat-messages .message.bot {
    align-self: flex-start;
}

.chat-messages .message.user {
    align-self: flex-end;
}

.msg-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
}

.message.bot .msg-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-bottom-left-radius: 2px;
}

.message.user .msg-bubble {
    background: var(--color-orange-grad);
    color: #ffffff;
    border-bottom-right-radius: 2px;
}

.msg-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    padding: 0 0.25rem;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.reply-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.reply-btn:hover {
    background: rgba(255, 122, 0, 0.1);
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.chat-input-area {
    display: flex;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input-area input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.85rem;
}

.chat-send-btn {
    background: transparent;
    border: none;
    color: var(--color-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.chat-send-btn:hover {
    color: var(--color-orange-hover);
    transform: scale(1.1);
}

/* SMS Mobile Simulator */
.phone-simulator {
    max-width: 290px;
    height: 520px;
    background: #111;
    border: 8px solid #222;
    border-radius: 36px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    position: relative;
}

.phone-status-bar {
    height: 28px;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #ffffff;
}

.phone-icons {
    letter-spacing: 2px;
}

.phone-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Incoming Call */
.incoming-call-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 2rem 1rem;
    text-align: center;
}

.caller-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #333;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caller-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
}

.caller-number {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.call-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
}

.call-btn {
    padding: 0.8rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.call-btn.decline {
    background: #ef4444;
    color: #ffffff;
}

.call-btn.answer {
    background: #10b981;
    color: #ffffff;
}

/* SMS Conversational Screen */
.sms-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #1c1c1e;
}

.sms-header {
    background: #2c2c2e;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #3a3a3c;
}

.sms-back {
    font-size: 1.5rem;
    color: #0a84ff;
    cursor: pointer;
}

.sms-contact {
    font-size: 0.8rem;
    font-weight: 600;
}

.sms-messages {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}

.sms-bubble {
    padding: 0.5rem 0.8rem;
    border-radius: 14px;
    font-size: 0.75rem;
    max-width: 80%;
    line-height: 1.4;
}

.sms-bubble.sent {
    background: #3a3a3c;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.sms-bubble.received {
    background: #007aff;
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.sms-typing-indicator {
    padding: 0.5rem 1rem;
    align-self: flex-start;
    display: flex;
    gap: 3px;
    background: #2c2c2e;
    border-radius: 12px;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.sms-typing-indicator span {
    width: 5px;
    height: 5px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: smsTyping 1.2s infinite;
}

.sms-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.sms-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

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

.hidden {
    display: none !important;
}

/* About Section Custom Graphics & Layout */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-orange-glow) 0%, rgba(6, 9, 19, 0) 70%);
    z-index: -1;
}

.about-image-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.territory-map-mockup {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 122, 0, 0.15);
    animation: radarPulse 4s linear infinite;
}

.circle-1 { width: 100%; height: 100%; animation-delay: 0s; }
.circle-2 { width: 70%; height: 70%; animation-delay: 1.3s; }
.circle-3 { width: 40%; height: 40%; animation-delay: 2.6s; }

@keyframes radarPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.radar-pointer {
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 122, 0, 0), var(--color-orange));
    transform-origin: left center;
    top: 50%;
    left: 50%;
    animation: radarRotate 6s linear infinite;
}

@keyframes radarRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.territory-logo-overlay {
    position: relative;
    z-index: 5;
    background: #060913;
    padding: 1rem;
    border-radius: 50%;
    border: 1px solid var(--border-active);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
}

.territory-logo-overlay img {
    width: 48px;
    height: 48px;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1.5rem 0;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 1.25rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-orange);
}

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

/* Contact & ROI Calculator Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3rem;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    margin: 0.5rem 0 1rem 0;
}

.contact-form-container p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--border-active);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.1);
}

/* Checklist Cards as checkbox selectors */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.checkbox-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid var(--text-muted);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.checkbox-card input:checked ~ .checkbox-custom {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-card input:checked ~ .checkbox-custom::after {
    display: block;
}

.checkbox-card input:checked ~ .checkbox-label {
    color: #ffffff;
    font-weight: 600;
}

.checkbox-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 122, 0, 0.3);
}

.checkbox-card input:checked ~ .checkbox-card {
    border-color: var(--color-orange);
    background: rgba(255, 122, 0, 0.05);
}

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

/* Estimator value panel and Info elements */
.contact-value-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.calc-pricing-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 1.5rem;
}

.calc-pricing-display .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-orange);
}

.calc-pricing-display .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.calc-pricing-display .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.calc-summary {
    margin-bottom: 1.5rem;
    max-height: 150px;
    overflow-y: auto;
}

.calc-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-items-list li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
}

.calc-items-list li span.item-price {
    color: var(--color-orange);
    font-weight: 600;
}

.empty-list-msg {
    color: var(--text-muted) !important;
    text-align: center;
    font-style: italic;
    display: block !important;
    padding: 1rem 0;
}

.calc-badge {
    text-align: center;
    font-size: 0.75rem;
    background: rgba(30, 75, 133, 0.15);
    color: #93c5fd;
    padding: 0.5rem;
    border-radius: 6px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

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

.info-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.info-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.info-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.info-val:hover {
    color: var(--color-orange);
}

/* Footer Styles */
.footer {
    background: #03050a;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 360px;
}

.footer-nav h4,
.footer-solutions h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-nav ul,
.footer-solutions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-nav a:hover,
.footer-solutions a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsiveness Rules */
@media (max-width: 1024px) {
    .hero-container,
    .services-grid,
    .playground-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .about-visual {
        order: 2;
    }
    
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: #060913;
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-glass);
        overflow-y: auto;
    }
    
    /* Mobile Dropdown styling overrides */
    .has-dropdown {
        width: 100%;
        text-align: center;
    }
    .has-dropdown .dropdown-toggle {
        justify-content: center;
    }
    .has-dropdown .dropdown-toggle .arrow {
        transform: rotate(0deg);
        transition: transform 0.3s;
    }
    .has-dropdown.active .dropdown-toggle .arrow {
        transform: rotate(180deg);
    }
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        background: rgba(255, 255, 255, 0.02);
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        border-radius: 0;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        display: none;
        pointer-events: none;
        transition: none;
        gap: 0;
    }
    .has-dropdown:hover .dropdown-menu {
        transform: none;
    }
    .has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: flex;
        pointer-events: auto;
    }
    .dropdown-menu li a {
        text-align: center;
        padding: 0.6rem 1rem;
    }
    .dropdown-menu li a:hover {
        border-left: none;
        padding-left: 1rem;
        background: rgba(255, 122, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .navbar.menu-active {
        background: #060913;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
}

.scroll-animate.visible {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-orange-grad);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top.show:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
}
