/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #f8fafc;
    --accent-color: #C3976A;
    --accent-dark: #A67C52;
    --highlight-color: #7A9A80;
    --success-color: #8B8C5A;
    --text-light: #ffffff;
    --text-dark: #2D150A;
    --text-muted: #6B5D50;
    --bg-light: #fefdfb;
    --bg-card: #ffffff;
    --bg-section: #f9f8f6;
    --border-color: #e8e1d8;
    --shadow: 0 4px 6px rgba(45, 21, 10, 0.08);
    --shadow-lg: 0 10px 25px rgba(45, 21, 10, 0.12);
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-accent: linear-gradient(135deg, #C3976A 0%, #A67C52 100%);
    --gradient-hero: linear-gradient(135deg, #C3976A 0%, #A67C52 50%, #7A9A80 100%);
    --gradient-warm: linear-gradient(135deg, #F4E4C1 0%, #E8D5B7 100%);
    --sage-accent: #7A9A80;
    --clay-warm: #C49B8A;
    --desert-gold: #C3976A;

    /* Logo Gradient Colors - matching ci-prices */
    --logo-gradient-start: #A67C52;
    --logo-gradient-end: #2D150A;
    
    /* Brand Colors - matching ci-prices palette */
    --brand-primary: #2D150A;
    --brand-secondary: #A67C52;
    --brand-accent: #C3976A;
    --brand-success: #8B7355;
    --brand-warning: #E6B887;
    --brand-danger: #8B4513;

    /* Desert-Inspired Wild West Colors - from ci-prices */
    --desert-sunset: #C3976A;
    --desert-sunset-light: #D4A878;
    --desert-sunset-dark: #B08756;
    --desert-gold: #F2CC8F;
    --desert-gold-light: #F5D5A3;
    --desert-gold-dark: #E4B973;
    --cactus-green: #81B29A;
    --cactus-green-light: #98C5AF;
    --cactus-green-dark: #6FA387;
    --desert-sky: #7FCDCD;
    --desert-sky-light: #9BD7D7;
    --desert-sky-dark: #6CB5B5;
    --dusty-purple: #A57C87;
    --dusty-purple-light: #B594A0;
    --dusty-purple-dark: #8F6A75;

    /* Grayscale - matching ci-prices */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #1a1a1a;

    /* Typography - Professional & Readable */
    --font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Borders */
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.text-large {
    font-size: 1.25rem;
}

.text-muted {
    color: var(--text-muted);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-lg {
    padding: 8rem 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header Get Started Button - matching ci-prices Report an Issue button */
.nav-links .btn.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--cactus-green) 0%, var(--cactus-green-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 178, 154, 0.2);
    border: none;
}

.nav-links .btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--cactus-green-light) 0%, var(--cactus-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 178, 154, 0.35);
    color: white;
}

.nav-links .btn.btn-primary::after {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 50%, var(--highlight-color) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(195, 151, 106, 0.3);
    border: 2px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #8B6914 50%, #5D7C63 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 151, 106, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(195, 151, 106, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: var(--space-24) 0 var(--space-20);
    background: white;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--brand-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(129, 178, 154, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 204, 143, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(127, 205, 205, 0.06) 0%, transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 1;
}


.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    margin-bottom: var(--space-12);
    line-height: 1.6;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--brand-primary);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--desert-sunset) 0%, var(--brand-secondary) 50%, var(--cactus-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hero Visual Elements */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Keep bitmap images capped but allow SVG to use its intrinsic ratio */
.hero-image:not([src$=".svg"]) {
    max-height: 400px;
}


.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(242, 204, 143, 0.15) 0%, rgba(129, 178, 154, 0.15) 100%);
    color: var(--brand-secondary);
    border: 1px solid var(--desert-gold);
    border-radius: var(--border-radius-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
    letter-spacing: -0.01em;
    box-shadow: 0 2px 8px rgba(242, 204, 143, 0.2);
}

/* Enhanced hero button styles for better visibility */
.hero .btn-primary {
    background: linear-gradient(135deg, #696969 0%, #708090 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(105, 105, 105, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #778899 0%, #696969 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(105, 105, 105, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary {
    background: transparent;
    color: #81B29A;
    border: 2px solid #81B29A;
    backdrop-filter: blur(15px);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(129, 178, 154, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero .btn-secondary:hover {
    background: linear-gradient(135deg, #81B29A 0%, #6FA387 100%);
    color: #ffffff;
    border-color: #6FA387;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 178, 154, 0.35);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 72px;
    height: 72px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 1.75rem;
    color: var(--accent-dark);
    background: linear-gradient(145deg, #FFFFFF 0%, #F7F5F2 60%, #EFE9E2 100%);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 8px -2px rgba(45,21,10,0.08), 0 1px 3px rgba(45,21,10,0.12), inset 0 0 0 2px rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
    --ring-color: var(--desert-gold);
}

.service-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(195,151,106,0.4), rgba(129,178,154,0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--accent-dark);
    display: block;
}

/* Variant accent glows */
.service-icon--release {
    --ring-color: var(--desert-sky);
}
.service-icon--security {
    --ring-color: var(--cactus-green);
}
.service-icon--performance {
    --ring-color: var(--desert-gold);
}

/* Animated subtle icon entrance */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at 30% 30%, rgba(195,151,106,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
}

/* Stats Section */
.stats {
    background: var(--gradient-warm);
    color: var(--text-dark);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="western-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,2 L18,10 L10,18 L2,10 Z" fill="none" stroke="rgba(122,154,128,0.15)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23western-pattern)"/></svg>');
    opacity: 0.4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 154, 128, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(122, 154, 128, 0.05) 50%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    text-shadow: 1px 1px 2px rgba(122, 154, 128, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Trust Section */
.trust {
    padding: 5rem 0;
    background: var(--bg-light);
}

.trust-content {
    text-align: center;
    margin-bottom: 3rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    opacity: 0.8;
}

.company-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta {
    background: var(--gradient-hero);
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Enhanced CTA section styles for better contrast */
.cta h3 {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta .btn-primary {
    background: linear-gradient(135deg, #696969 0%, #708090 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(105, 105, 105, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: linear-gradient(135deg, #778899 0%, #696969 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(105, 105, 105, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta .btn-secondary {
    background: #81B29A;
    color: #ffffff;
    border: 2px solid #81B29A;
    backdrop-filter: blur(15px);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(129, 178, 154, 0.2);
}

.cta .btn-secondary:hover {
    background: linear-gradient(135deg, #81B29A 0%, #6FA387 100%);
    color: #ffffff;
    border-color: #6FA387;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 178, 154, 0.35);
}

/* Additional gradient button style for special sections */
.gradient-bg .btn-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(240, 147, 251, 0.3);
}

.gradient-bg .btn-primary:hover {
    background: linear-gradient(135deg, #ee82f7 0%, #f24d65 50%, #3b9bff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 147, 251, 0.5);
}

/* Availability Modal */
.mw-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: var(--font-family);
}

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

.mw-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(32, 18, 8, 0.55);
    backdrop-filter: blur(6px) saturate(140%);
    -webkit-backdrop-filter: blur(6px) saturate(140%);
    opacity: 0;
    animation: mwFadeIn 0.35s ease forwards;
}

.mw-modal__dialog {
    position: relative;
    width: min(560px, 92%);
    background: linear-gradient(145deg, #FFFFFF 0%, #FCFBF9 60%, #F6F1EC 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(45,21,10,0.25), 0 6px 18px rgba(45,21,10,0.12), inset 0 0 0 1px rgba(255,255,255,0.6);
    padding: 2.5rem 2.25rem 2.75rem;
    transform: translateY(24px) scale(.97);
    opacity: 0;
    animation: mwSlideIn 0.48s cubic-bezier(.22,.9,.34,1) forwards;
}

.mw-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all .25s ease;
}

.mw-modal__close:hover { background: #FFF; transform: rotate(6deg); box-shadow: var(--shadow); }

.mw-modal__title {
    font-size: 1.75rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.mw-modal__lead { font-size: 1.05rem; color: var(--text-dark); font-weight: 500; line-height: 1.55; margin-bottom: 1rem; }
.mw-modal__body-text { font-size: .97rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1.75rem; }

.mw-modal__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.25rem; }
.mw-modal__email-btn { flex: 1 1 auto; justify-content: center; }

.mw-modal__small-print { font-size: .75rem; color: var(--gray-500); letter-spacing: .4px; }

@media (max-width: 560px) {
  .mw-modal__dialog { padding: 2rem 1.5rem 2.25rem; border-radius: 18px; }
  .mw-modal__title { font-size: 1.5rem; }
}

@keyframes mwSlideIn {
  0% { opacity:0; transform: translateY(32px) scale(.94); }
  60% { opacity:1; transform: translateY(-4px) scale(1.01); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}

@keyframes mwFadeIn { from { opacity:0; } to { opacity:1; } }

/* Footer - matching ci-prices style */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid var(--gray-700);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
    margin-bottom: var(--space-8);
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-brand .brand-name {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-4);
}

.company-info {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.footer-section-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-4);
}

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

.footer-list li {
    margin-bottom: var(--space-2);
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--desert-gold);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--border-radius);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    text-align: left;
}

.disclaimer-icon {
    color: var(--brand-warning);
    flex-shrink: 0;
    margin-top: var(--space-1);
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content p {
    color: var(--gray-300);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin-bottom: var(--space-2);
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.disclaimer-updated {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
}

.footer-copyright {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container, .container-wide {
        padding: 0 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: 80vh;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image {
        max-height: 300px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-lg {
        padding: 5rem 0;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .disclaimer {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}
