:root {
    --bg-dark: #0f1011;
    --bg-darker: #070708;
    --accent: #ff4500;
    --accent-hover: #ff5c1f;
    --text-main: #f5f5f5;
    --text-muted: #888888;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Manrope', 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);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.domain-banner {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.domain-banner a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
}

.accent {
    color: var(--accent);
}

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

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.btn-outline {
    border: 1px solid var(--text-main);
    padding: 10px 20px;
    border-radius: 0;
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: transform 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.subtitle {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 10rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-badge {
    font-weight: 800;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visuals */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.geometric-shape {
    position: absolute;
    background: var(--bg-darker);
    border: 1px solid rgba(255,255,255,0.05);
}

.shape-1 {
    width: 400px;
    height: 600px;
    right: 10%;
    top: 20%;
    transform: rotate(15deg);
}

.shape-2 {
    width: 300px;
    height: 300px;
    right: -5%;
    bottom: 10%;
    background: var(--accent);
    opacity: 0.1;
    transform: rotate(-10deg);
}

.texture-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Services */
.services {
    padding: 10rem 5%;
    background: var(--bg-darker);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

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

.service-card {
    padding: 4rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent);
}

.service-card.highlight {
    background: #151618;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 1rem;
    right: 1rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Trust Signals */
.trust-signals {
    padding: 8rem 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: center;
}

.stat h4 {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat p {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact */
.contact-section {
    padding: 10rem 5%;
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    width: 100%;
    max-width: 600px;
}

.contact-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.input-group {
    display: flex;
    gap: 1.5rem;
}

input, select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent);
}

select option {
    background: var(--bg-darker);
    color: var(--text-main);
}

/* Footer */
footer {
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    nav { display: none; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-visual { display: none; }
    .input-group { flex-direction: column; }
}