/* ==========================================================================
   POINT DIGITAL PROPOSAL - CSS DESIGN SYSTEM
   ========================================================================== */

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

:root {
    /* Color Palette */
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-tertiary: #1a1a22;
    --card-bg: rgba(22, 22, 28, 0.7);
    --card-border: rgba(255, 90, 0, 0.15);
    --card-border-hover: rgba(255, 90, 0, 0.4);
    
    --accent-orange: #ff5a00;
    --accent-orange-glow: rgba(255, 90, 0, 0.35);
    --accent-orange-hover: #ff7629;
    --accent-green: #00ff66;
    --accent-green-glow: rgba(0, 255, 102, 0.25);
    
    --text-primary: #ffffff;
    --text-secondary: #9ea2b0;
    --text-muted: #626575;
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Noto Sans Georgian', 'Inter', sans-serif;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 90, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 90, 0, 0.04) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans Georgian', 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

/* UI Elements & Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 12, 0.95);
    border-bottom: 1px solid var(--card-border);
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-badge {
    background: var(--accent-orange);
    color: var(--bg-primary);
    padding: 4px 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px var(--accent-orange-glow);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--accent-orange);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-orange);
    text-shadow: 0 0 8px var(--accent-orange-glow);
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.1);
}

.nav-btn:hover {
    background: var(--accent-orange);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--accent-orange-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('../assets/tactical_bg.png') no-repeat center center / cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.92) 100%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 90, 0, 0.1);
    border: 1px solid var(--accent-orange);
    padding: 6px 14px;
    border-radius: 100px;
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-tag span.dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span.highlight {
    color: var(--accent-orange);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 90, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 90, 0, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Hero Target Visualization */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.target-circle {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 90, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 60s linear infinite;
}

.target-circle::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(255, 90, 0, 0.1);
}

.target-circle::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px dashed var(--accent-orange);
}

.target-center {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-orange);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crosshair-h, .crosshair-v {
    position: absolute;
    background: rgba(255, 90, 0, 0.25);
}

.crosshair-h {
    width: 380px;
    height: 1px;
}

.crosshair-v {
    width: 1px;
    height: 380px;
}

.bullet-hole {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    border: 2px solid #555;
    box-shadow: inset 0 0 4px #000, 0 0 6px var(--accent-orange);
    z-index: 5;
    animation: shoot-impact 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

.bullet-hole-1 { top: 35%; left: 42%; animation-delay: 0.5s; opacity: 0; }
.bullet-hole-2 { top: 58%; left: 63%; animation-delay: 1.2s; opacity: 0; }
.bullet-hole-3 { top: 48%; left: 47%; animation-delay: 2.0s; opacity: 0; }

/* Section Base */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    color: var(--accent-orange);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 18px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Why Site Section Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 90, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 90, 0, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 90, 0, 0.1);
    border: 1px solid rgba(255, 90, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-orange);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Affiliate Dashboard Preview Mockup */
.dashboard-sec {
    background-color: var(--bg-secondary);
}

.dashboard-mockup {
    background: #0f0f12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 520px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Dashboard Sidebar */
.dash-sidebar {
    background: #0b0b0d;
    padding: 32px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.dash-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.dash-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dash-menu-item:hover, .dash-menu-item.active {
    background: rgba(255, 90, 0, 0.08);
    color: var(--accent-orange);
    border-left: 2px solid var(--accent-orange);
}

.dash-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.profile-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

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

/* Dashboard Content Area */
.dash-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.badge-partner {
    background: rgba(0, 255, 102, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 102, 0.2);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

/* Stats Cards in Dashboard */
.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 20px;
    transition: var(--transition-fast);
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

.stat-value span.curr {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-left: 2px;
}

/* Dashboard Interactive Area */
.dash-interactive-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.dash-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.dash-box h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ref-link-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.ref-input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    outline: none;
    font-family: monospace;
}

.btn-icon {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    background: var(--accent-orange);
    color: var(--bg-primary);
    border-color: var(--accent-orange);
}

.dash-payout-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.btn-dash-action {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.btn-dash-action.primary {
    background: var(--accent-orange);
    color: var(--bg-primary);
    border: none;
}

.btn-dash-action.primary:hover {
    background: var(--accent-orange-hover);
}

.btn-dash-action.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-dash-action.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* QR Code Section inside Dashboard */
.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.qr-box {
    background: white;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    width: 140px;
    height: 140px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-box svg {
    width: 100%;
    height: 100%;
}

.qr-caption {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ROI / Business Calculator Section */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.calc-sliders {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.calc-slider-group {
    margin-bottom: 24px;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.calc-slider-header span.label {
    color: var(--text-secondary);
}

.calc-slider-header span.val {
    color: var(--accent-orange);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    outline: none;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-orange);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-orange-glow);
    transition: var(--transition-fast);
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Calculator Output display */
.calc-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-card {
    background: rgba(255, 90, 0, 0.02);
    border: 1px dashed rgba(255, 90, 0, 0.2);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-card.highlighted {
    background: rgba(255, 90, 0, 0.05);
    border: 1px solid var(--accent-orange);
    box-shadow: 0 10px 25px rgba(255, 90, 0, 0.05);
}

.result-info h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.result-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.result-num {
    font-size: 2.25rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.result-num span.curr {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-left: 2px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card.popular {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(255, 90, 0, 0.1);
    transform: scale(1.02);
}

.pricing-card.popular::after {
    content: 'ყველაზე პოპულარული';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange-hover);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.pricing-price span.curr {
    font-size: 1.75rem;
    color: var(--accent-orange);
    margin-left: 2px;
}

.pricing-price span.term {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 6px;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-features li svg.check {
    color: var(--accent-orange);
}

.pricing-features li svg.cross {
    color: var(--text-muted);
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

/* Contact / Proposal Form Section */
.contact-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-item .icon {
    color: var(--accent-orange);
    font-size: 1.25rem;
    margin-top: 2px;
}

.contact-detail-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Form Input Fields */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.1);
}

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

.form-select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* Toast Message */
.toast-msg {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #1e1e24;
    border-left: 4px solid var(--accent-orange);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    transform: translateY(150px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-msg.show {
    transform: translateY(0);
}

/* Footer Section */
footer {
    background: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-logo {
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 30px;
    width: 100%;
}

/* ==========================================================================
   MEDIA QUERIES - FULL MOBILE OPTIMIZATION
   ========================================================================== */

/* Tablet Styles (max-width: 992px) */
@media screen and (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 140px 0 80px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 32px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .contact-container {
        padding: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile landscape and big phones (max-width: 768px) */
@media screen and (max-width: 768px) {
    .nav-links, .nav-btn-wrapper {
        display: none; /* Hide default nav for mobile drawer */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Responsive Mobile Menu Drawer */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        padding: 40px 24px;
        gap: 24px;
        z-index: 999;
        animation: slideDown 0.3s ease forwards;
        overflow-y: auto;
    }
    
    .nav-links.mobile-active a {
        font-size: 1.3rem;
    }
    
    .dashboard-mockup {
        grid-template-columns: 1fr; /* Stack sidebar on mobile */
    }
    
    .dash-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 24px;
    }
    
    .dash-menu {
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 0;
        gap: 8px;
    }
    
    .dash-menu-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .dash-profile {
        display: none; /* Hide profile in side panel mockup for space */
    }
    
    .dash-content {
        padding: 24px;
    }
    
    .dash-interactive-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Small Mobile Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
    html {
        font-size: 15px; /* Slightly scale base font down */
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-actions .btn {
        width: 100%; /* Stack buttons on very small screens */
    }
    
    .target-circle {
        width: 260px;
        height: 260px;
    }
    
    .crosshair-h { width: 300px; }
    .crosshair-v { height: 300px; }
    
    .dash-stats-row {
        grid-template-columns: 1fr; /* Stack stats cards */
    }
    
    .ref-link-wrapper {
        flex-direction: column;
    }
    
    .ref-input {
        width: 100%;
    }
    
    .btn-icon {
        width: 100%;
    }
    
    .contact-container {
        padding: 24px 16px;
        border-radius: var(--border-radius-md);
    }
    
    .toast-msg {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; box-shadow: 0 0 10px var(--accent-orange); }
    100% { transform: scale(1); opacity: 1; }
}

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

@keyframes shoot-impact {
    0% { transform: scale(3); opacity: 0; }
    30% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Extras Section */
.extras-container {
    margin-top: 60px;
    border-top: 1px dashed rgba(255, 90, 0, 0.2);
    padding-top: 40px;
}

.extras-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.5rem;
}

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

.extra-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.extra-card:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 90, 0, 0.02);
    transform: translateY(-2px);
}

.extra-card h4 {
    color: var(--accent-orange);
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.extra-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.extra-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Custom Interactive Crosshair Cursor */
.custom-crosshair {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%) translate3d(var(--x, 0px), var(--y, 0px), 0px) scale(var(--scale, 1));
    transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.2);
}

.custom-crosshair::before,
.custom-crosshair::after {
    content: '';
    position: absolute;
    background: var(--accent-orange);
    transition: background-color 0.2s ease;
}

/* Vertical crosshair line */
.custom-crosshair::before {
    top: -4px;
    bottom: -4px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
}

/* Horizontal crosshair line */
.custom-crosshair::after {
    left: -4px;
    right: -4px;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
}

/* Hovering over clickable items, let's change color and scale up/down */
.custom-crosshair.clicking {
    --scale: 0.6 !important;
    border-color: #ff3300 !important;
}

.custom-crosshair.clicking::before,
.custom-crosshair.clicking::after {
    background: #ff3300 !important;
}

.custom-crosshair.hovering {
    --scale: 1.4;
    border-color: var(--accent-green) !important;
    box-shadow: 0 0 15px var(--accent-green-glow) !important;
}

.custom-crosshair.hovering::before,
.custom-crosshair.hovering::after {
    background: var(--accent-green) !important;
}

/* Interactive cursor custom style for hide default mouse on interactive items on desktop */
@media (hover: hover) {
    body, .hero, .dashboard-mockup, .calc-sliders, .features-grid, .btn, .btn-icon, .dash-menu-item, input[type="range"] {
        cursor: none;
    }
}

@media (hover: none) {
    .custom-crosshair {
        display: none !important;
    }
}
