:root {
    --bg-dark: #070809;
    --bg-card: #0e1013;
    --bg-card-hover: #14171c;
    --text-main: #ffffff;
    --text-muted: #8e9cae;
    --orange-accent: #ff7a00;
    --orange-glow: rgba(255, 122, 0, 0.12);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.2);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Map grid background pattern from his real assets */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg_map.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    mix-blend-mode: screen;
    z-index: -2;
    pointer-events: none;
}

/* Subtle orange neon glow in background */
body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange-glow) 0%, rgba(0,0,0,0) 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

header {
    background-color: rgba(7, 8, 9, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--orange-accent);
    object-fit: cover;
    box-shadow: 0 0 8px rgba(255, 122, 0, 0.25);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    color: var(--text-main);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--orange-accent);
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--orange-accent);
    color: #fff;
    transform: translateY(-1px);
}

/* Hero Section styled like his concrete block/minimalist frame mockup */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 4rem 2rem;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid var(--orange-accent);
    color: var(--orange-accent);
    padding: 0.3rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Brutalist container resembling his concrete template */
.concrete-container {
    background-image: linear-gradient(rgba(14, 16, 19, 0.85), rgba(14, 16, 19, 0.85)), url('bg_concrete.jpg');
    background-size: cover;
    background-position: center;
    border: 2px solid var(--border-color-hover);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 2.5rem;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 1.1rem 2.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary-large:hover {
    background-color: var(--orange-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.3);
}

/* Sections General */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange-accent);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.1);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--orange-glow) 0%, rgba(0,0,0,0) 70%);
    top: -60px;
    right: -60px;
    border-radius: 50%;
    z-index: 0;
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--orange-accent);
    display: flex;
    justify-content: center;
}

.svg-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .svg-icon {
    transform: scale(1.1);
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--orange-accent);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Verified Insights Section Styling */
.insights-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .insights-container {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 3rem;
    }
}

.insights-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.insights-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.insights-metrics-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.ins-metric-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ins-label {
    font-weight: 600;
    color: var(--text-muted);
}

.ins-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}

.trend-up {
    color: #00ff88;
    font-weight: 800;
    margin-left: 0.25rem;
}

.insights-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Phone Mockup Frame for Insights video player */
.insights-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: #000;
    border: 8px solid #1c2025;
    border-radius: 36px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 122, 0, 0.15);
    position: relative;
    overflow: visible; /* Allows arrows to overflow slightly */
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background: #1c2025;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    border-radius: 28px;
    position: relative;
}

.phone-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

.phone-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    padding: 2.5rem 1rem 1.2rem 1rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.video-info-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

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

.v-stat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.v-stat span {
    color: #fff;
    font-weight: 700;
}

/* Navigation arrows outside the phone frame */
.phone-nav-prev, .phone-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: rgba(14, 16, 19, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 15;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    user-select: none;
}

.phone-nav-prev:hover, .phone-nav-next:hover {
    background-color: var(--orange-accent);
    border-color: var(--orange-accent);
}

.phone-nav-prev {
    left: -18px;
}

.phone-nav-next {
    right: -18px;
}

/* Demographics Section */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

@media (max-width: 600px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }
}

.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
}

.demo-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    border-left: 3px solid var(--orange-accent);
    padding-left: 0.75rem;
}

.bar-container {
    margin-bottom: 1.5rem;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--orange-accent);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.country-list {
    list-style: none;
}

.country-list li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.country-list li:last-child {
    border-bottom: none;
}

.flag {
    font-size: 1.3rem;
    margin-right: 1rem;
}

.country-name {
    flex-grow: 1;
    font-weight: 600;
}

.percentage {
    font-weight: 700;
    color: var(--orange-accent);
}

/* Services & Calculator Section */
.calculator-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    border-color: rgba(255, 122, 0, 0.5);
    background-color: var(--bg-card-hover);
}

/* Checked/Active state animation for service card */
.service-item.active {
    border-color: var(--orange-accent);
    background-color: rgba(255, 122, 0, 0.04);
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.08);
}

.service-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-accent);
    cursor: pointer;
}

.service-item label {
    flex-grow: 1;
    cursor: pointer;
}

.service-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.service-info {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-badge {
    background: rgba(255, 122, 0, 0.1);
    color: var(--orange-accent);
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 122, 0, 0.2);
    white-space: nowrap;
}

.calculator-summary {
    background-color: var(--bg-card);
    border: 1px solid var(--orange-accent);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    position: sticky;
    top: 100px;
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.05);
}

.calculator-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.selected-items-list {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.no-items {
    color: var(--text-muted);
    font-style: italic;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.total-price {
    color: var(--orange-accent);
}

.btn-primary-full {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-full:hover {
    background-color: var(--orange-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Social Proof (Philosophy Card) */
.philosophy-card {
    background-image: linear-gradient(rgba(14, 16, 19, 0.95), rgba(14, 16, 19, 0.95)), url('bg_concrete.jpg');
    background-size: cover;
    border-left: 4px solid var(--orange-accent);
    border-radius: 0 8px 8px 0;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.philosophy-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.philosophy-author {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--orange-accent);
    font-size: 1.05rem;
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Modal success styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-card);
    border: 2px solid var(--orange-accent);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--orange-accent);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    margin-top: 6rem;
    background: #040506;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--orange-accent);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Equipment Section Styling */
.equipment-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.equipment-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange-accent);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.1);
}

.equip-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--orange-accent);
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.equip-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
