/* ============================================
   GRINDSTONE CLEANUP — STYLE SYSTEM
   Color Psychology:
   - Deep Black / Charcoal: Authority, power, strength
   - Orange / Amber: Action, confidence, urgency, enthusiasm
   - Steel Gray: Industrial, professional, reliable
   - White: Clean contrast, clarity
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Primary Palette — Persuasion Colors */
    --orange: #E87A1E;
    --orange-bright: #FF8C2B;
    --orange-dark: #C96A15;
    --orange-glow: rgba(232, 122, 30, 0.25);

    /* Neutrals — Industrial Strength */
    --black: #0A0A0A;
    --black-soft: #141414;
    --charcoal: #1A1A1A;
    --dark-gray: #222222;
    --steel: #2C2C2C;
    --mid-gray: #444444;
    --light-gray: #999999;
    --off-white: #E8E8E8;
    --white: #FFFFFF;

    /* Accent */
    --red: #D42A2A;
    --green: #2ECC40;

    /* Typography */
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-orange: 0 8px 30px rgba(232, 122, 30, 0.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--orange-bright);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--orange);
}

.required {
    color: var(--orange);
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(232, 122, 30, 0.3);
    border-radius: 4px;
    background: rgba(232, 122, 30, 0.06);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 600px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-bright), var(--orange));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 122, 30, 0.45);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(232, 122, 30, 0.08);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(232, 122, 30, 0.15);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--orange);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off-white);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--orange-bright) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 122, 30, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 122, 30, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.01) 2px,
            rgba(255,255,255,0.01) 4px
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -10px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 100px 24px 0;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--orange);
    padding: 8px 20px;
    border: 1px solid rgba(232, 122, 30, 0.4);
    border-radius: 50px;
    margin-bottom: 30px;
    background: rgba(232, 122, 30, 0.08);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--orange);
    opacity: 0.3;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--light-gray);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--orange);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--orange);
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--orange);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50px; }
    100% { top: 100%; }
}

/* ===== PAIN SECTION ===== */
.pain-section {
    padding: var(--section-padding);
    background:
        linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
    position: relative;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.3;
}

.pain-content {
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pain-card {
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    opacity: 0;
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 122, 30, 0.2);
    box-shadow: var(--shadow-md);
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 20px;
}

.pain-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 12px;
}

.pain-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background: var(--black);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: linear-gradient(145deg, var(--dark-gray), var(--charcoal));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-bright));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 122, 30, 0.2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-wrap {
    position: relative;
    margin-bottom: 24px;
}

.service-icon-wrap i {
    font-size: 2.5rem;
    color: var(--orange);
}

.service-number {
    position: absolute;
    top: -10px;
    right: 0;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== WORK SHOWCASE SECTION ===== */
.work-section {
    padding: var(--section-padding);
    background: var(--charcoal);
    position: relative;
}

.work-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.work-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(232, 122, 30, 0.2);
}

.work-image {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.work-image-wrapper:hover .work-image {
    transform: scale(1.03);
}

.work-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    padding: 8px 16px;
    border: 1px solid var(--orange);
    border-radius: 4px;
    background: rgba(10, 10, 10, 0.7);
}

.work-caption {
    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: var(--dark-gray);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}

.work-caption p {
    font-size: 0.95rem;
    color: var(--light-gray);
}

.work-caption strong {
    color: var(--white);
}

/* ===== WHY US SECTION ===== */
.why-section {
    padding: var(--section-padding);
    background: var(--black);
    position: relative;
}

.why-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.why-desc {
    font-size: 1.05rem;
    color: var(--light-gray);
    margin-bottom: 36px;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(232, 122, 30, 0.12);
    border: 1px solid rgba(232, 122, 30, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
}

.why-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.why-feature p {
    font-size: 0.88rem;
    color: var(--light-gray);
}

/* Why Visual Cards */
.why-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-stat-card {
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.why-stat-card:hover {
    border-color: rgba(232, 122, 30, 0.2);
    transform: translateY(-2px);
}

.why-stat-card.highlight-card {
    background: linear-gradient(145deg, var(--orange-dark), var(--orange));
    border: none;
}

.why-stat-card.highlight-card p {
    color: rgba(255,255,255,0.9);
}

.big-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.big-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--orange);
    line-height: 1;
}

.highlight-card .big-number {
    color: var(--white);
}

.big-unit {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--orange);
    font-weight: 600;
}

.highlight-card .big-unit {
    color: rgba(255,255,255,0.8);
}

.why-stat-card p {
    font-size: 0.85rem;
    color: var(--light-gray);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 80px 0;
    background:
        linear-gradient(180deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: var(--dark-gray);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--orange);
    opacity: 0.4;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--mid-gray);
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--light-gray);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--section-padding);
    background: var(--black);
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 220px;
    padding: 0 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-orange);
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(232, 122, 30, 0.2));
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background:
        radial-gradient(ellipse at 80% 20%, rgba(232, 122, 30, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.3;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--light-gray);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(232, 122, 30, 0.12);
    border: 1px solid rgba(232, 122, 30, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 0.95rem;
    color: var(--light-gray);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    padding: 8px 14px;
    border: 1px solid rgba(232, 122, 30, 0.3);
    border-radius: 6px;
    background: rgba(232, 122, 30, 0.06);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-bright), var(--orange));
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--steel);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--mid-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 122, 30, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-gray);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button[type="submit"] {
    margin-top: 8px;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--mid-gray);
    margin-top: 16px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(232, 122, 30, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.4;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo .logo-icon {
    font-size: 1.3rem;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 16px;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: var(--orange);
    margin: 0 auto 16px;
    border-radius: 1px;
    opacity: 0.5;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--mid-gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .why-stat-card {
        flex: 1;
        min-width: 200px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: var(--transition);
        padding: 40px;
        border-left: 1px solid rgba(232, 122, 30, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 10vw, 4.5rem);
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 24px;
    }

    .process-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, var(--orange), rgba(232, 122, 30, 0.2));
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .why-visual {
        flex-direction: column;
    }

    .why-stat-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .trust-badges {
        justify-content: center;
    }
}
