/* ============================================================
   PREP CONNECT MOBILE — SHARED STYLES FOR "-NEW" MARKETING PAGES
   Used by: Default-New.aspx, Contact-New.aspx, our-plans/Default-New.aspx,
            sign-up/Default-New.aspx, Login.aspx
   ============================================================ */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    color: #333333;
    background: #ffffff;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.display-head {
    font-family: 'Barlow Condensed', 'Inter', Arial, sans-serif;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

/* ============================================================
   NAVIGATION (dark-glass static variant — used on interior pages)
   ============================================================ */
.site-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(120, 120, 120, 0.92);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
    color: rgba(255,255,255,0.95);
    font-size: 13px;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.nav-links .btn-nav {
    background: #990000;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s;
}
.nav-links .btn-nav:hover { background: #bb0000; color: #fff; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
}
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: rgba(60, 60, 60, 0.95);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 16px;
    padding: 16px 24px 24px;
    z-index: 999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
@media (max-width: 940px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
}

/* ============================================================
   PAGE HERO (interior pages: Contact, Pricing, Sign Up, Login)
   ============================================================ */
.page-hero {
    padding: 152px 32px 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a0000 50%, #990000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.03) 60px,
        rgba(255,255,255,0.03) 120px
    );
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.page-hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    background: #990000;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-primary:hover { background: #bb0000; transform: translateY(-2px); color: #fff; }
.btn-outline {
    background: transparent;
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(26,26,26,0.3);
    letter-spacing: 0.02em;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}
.btn-outline:hover { border-color: #1a1a1a; background: rgba(0,0,0,0.05); color: #1a1a1a; }
.btn-white {
    background: #ffffff;
    color: #990000;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-outline-white {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.6);
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}
.btn-outline-white:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   ALERTS & VALIDATION
   ============================================================ */
.page-alert {
    max-width: 900px;
    width: calc(100% - 64px);
    margin: 32px auto 0;
    padding: 16px 22px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
}
.page-alert-error {
    background: #fdecec;
    border: 1px solid rgba(153,0,0,0.3);
    color: #990000;
}
.page-alert-success {
    background: #eefaf0;
    border: 1px solid rgba(30,140,60,0.3);
    color: #1e8c3c;
}
.validation-summary {
    max-width: 900px;
    width: calc(100% - 64px);
    margin: 24px auto 0;
    padding: 16px 22px;
    border-radius: 8px;
    background: #fdecec;
    border: 1px solid rgba(153,0,0,0.3);
    color: #990000;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
}
.validation-summary ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
}
.validation-summary ul li { margin-bottom: 2px; }
.validation-summary ul li:last-child { margin-bottom: 0; }

/* ============================================================
   PRICING CTA BAND (Home + Pricing pages)
   ============================================================ */
.pricing-cta-section {
    background: #990000;
    padding: 80px 24px;
    text-align: center;
}
.pricing-cta-section h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #ffffff;
    margin-bottom: 14px;
}
.pricing-cta-section > p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FORM FIELDS (Contact, Sign Up, Login)
   ============================================================ */
.field-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.field-row.single .field { flex: 1 1 100%; }
.field { flex: 1 1 180px; }
.field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.field input,
.field select {
    width: 100%;
    padding: 11px 13px;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    color: #1a1a1a;
    background: #fbfbfb;
    transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus {
    outline: none;
    border-color: #990000;
    background: #ffffff;
}
@media (max-width: 620px) {
    .field-row { flex-direction: column; }
    .field { flex: 1 1 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1a1a1a;
    padding: 56px 32px 32px;
    color: #888888;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2d2d2d;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: #666666; max-width: 280px; }
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaaaaa;
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-col a:hover { color: #cccccc; }
.footer-col span { font-size: 13px; color: #555555; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #555555;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a { color: #555555; transition: color 0.2s; }
.footer-bottom a:hover { color: #cccccc; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
    .footer-top { flex-direction: column; gap: 28px; }
    .site-nav { padding: 0 20px; }
}
