/* ==============================================================================
   DcluttrD Solutions - Pure Brushed Steel & Titanium Chrome Design System
   100% Cohesive Monochromatic Palette Matching the 3D Brushed Metal Logo
   ============================================================================== */

:root {
    /* Color System - Pure Monochromatic Charcoal & Titanium Steel */
    --bg-main: #0b0e14;
    --bg-surface: #111622;
    --bg-surface-hover: #171f2d;
    --bg-darker: #07090d;

    --border-matte: rgba(255, 255, 255, 0.08);
    --border-steel: #1e2634;
    --border-silver: #94a3b8;
    --border-chrome: #e2e8f0;

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Metallic Silver & Titanium Accent Tokens */
    --accent-steel-light: #ffffff;
    --accent-steel-mid: #cbd5e1;
    --accent-steel-dark: #64748b;
    --accent-emerald: #10b981;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout Tokens */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-matte: 0 12px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    /* Industrial tech grid pattern + pure metallic silver ambient top light */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}

/* Chrome & Brushed Steel Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title, .section-title, .package-name, .remote-title {
    background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 45%, #94a3b8 80%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: #ffffff;
}

/* Navigation Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: rgba(11, 14, 20, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-matte);
    z-index: 1000;
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    margin-right: 28px;
    display: flex;
    align-items: center;
}

.brand-logo .logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
    transition: transform 0.25s ease;
}

.brand-logo:hover .logo-img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    position: relative;
    padding: 4px 0;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 16px;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    border: 1px solid var(--border-steel);
    transition: all 0.2s ease;
}

.phone-link:hover {
    border-color: var(--border-silver);
    color: #ffffff;
}

/* Minimalist Brushed Steel & Titanium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

/* Solid Brushed Titanium Primary Button */
.btn-primary {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    color: #0b0e14;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Dark Steel Secondary Button */
.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-steel);
}

.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-silver);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 15.5px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-logo-wrapper {
    margin-bottom: 36px;
    display: flex;
    justify-content: center;
}

.hero-logo-main {
    max-width: 560px;
    width: 92%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.85));
    transition: transform 0.3s ease;
}

.hero-logo-main:hover {
    transform: scale(1.015);
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18.5px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* Sections */
.section {
    padding: 96px 0;
}

.section-dark {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-matte);
    border-bottom: 1px solid var(--border-matte);
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.step-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-steel);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-matte);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-silver);
}

.step-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-steel);
    padding: 3px 12px;
    border-radius: 99px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-steel);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-matte);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-silver);
}

.pricing-card.popular {
    border: 2px solid var(--border-chrome);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, var(--bg-surface) 100%);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05), var(--shadow-matte);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #f8fafc 0%, #cbd5e1 100%);
    color: #0b0e14;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 16px;
    border-radius: 99px;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.card-icon-svg {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-steel);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.package-name {
    font-size: 23px;
    margin-bottom: 8px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.package-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.package-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.package-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 11px;
    font-size: 14px;
    color: var(--text-secondary);
}

.package-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
    font-size: 15px;
}

/* Standard Field Specifications Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.check-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-steel);
    padding: 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-matte);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.check-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-silver);
}

.check-icon-svg {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-card strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.check-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Remote Support Box */
.remote-box {
    background: var(--bg-surface);
    border: 2px solid var(--border-chrome);
    border-radius: var(--radius-lg);
    padding: 52px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.04), var(--shadow-matte);
}

.remote-title {
    font-size: 34px;
    margin-bottom: 12px;
}

.remote-intro {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 26px;
}

.remote-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-main);
    border: 1px solid var(--border-silver);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    margin-bottom: 26px;
}

.r-name {
    font-size: 15.5px;
    font-weight: 600;
    color: #ffffff;
}

.r-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.remote-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.remote-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.r-point strong {
    display: block;
    font-size: 15.5px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.r-point p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Guarantees Grid */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.g-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-steel);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-matte);
}

.g-card h3 {
    font-size: 21px;
    margin-bottom: 8px;
    color: #ffffff;
}

.g-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-matte);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.footer-sub {
    font-size: 16.5px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 36px;
}

.c-item span {
    color: var(--text-dim);
    font-size: 14.5px;
    margin-right: 6px;
}

.c-item a {
    font-size: 17.5px;
    font-weight: 700;
    color: #ffffff;
}

.c-item a:hover {
    color: var(--border-chrome);
}

.location-banner {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-steel);
    padding: 12px 24px;
    border-radius: 99px;
    display: inline-block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    font-size: 13px;
    color: var(--text-dim);
}

/* Responsive Media Queries */
@media (max-width: 1280px) {
    .nav-container { max-width: 100%; padding: 0 20px; }
    .nav-links { gap: 20px; }
    .nav-link { font-size: 13px; }
    .brand-logo .logo-img { height: 46px; }
    .phone-link { padding: 7px 12px; font-size: 13px; }
    .btn { padding: 9px 18px; font-size: 13.5px; }
}

@media (max-width: 1100px) {
    .phone-link { display: none; }
    .hero-title { font-size: 38px; }
    .hero-logo-main { max-width: 460px; }
}

@media (max-width: 900px) {
    .navbar { height: 74px; }
    .brand-logo .logo-img { height: 42px; }
    .nav-links { display: none; }
    .hero-section { padding: 120px 0 60px; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 15.5px; }
    .hero-cta-buttons { flex-direction: column; gap: 12px; }
    .steps-grid, .pricing-grid, .checklist-grid, .remote-points, .guarantees-grid { grid-template-columns: 1fr; }
    .contact-details { flex-direction: column; gap: 16px; }
}
