/* ============================================================
   Crow Web Services — styles.css
   ============================================================ */

/* --- Variables --- */
:root {
  --accent:      #2979FF;
  --accent-h:    #1A65F0;
  --bg:          #0A0A0A;
  --bg2:         #111111;
  --bg3:         #161616;
  --white:       #FFFFFF;
  --off-white:   #EBEBEB;
  --muted:       #666666;
  --muted2:      #3A3A3A;
  --border:      #1C1C1C;
  --border2:     #282828;
  --radius:      8px;
  --max-w:       1200px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 85, 0, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: #555;
  color: var(--off-white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-crow {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.05em;
}

.nav-logo-rest {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.58rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile .m-link {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  transition: color 0.2s;
}

.nav-mobile .m-link:hover { color: var(--accent); }

.nav-mobile .m-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.nav-mobile .m-cta:hover { background: var(--accent-h); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 70% 50%, rgba(255, 85, 0, 0.055) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 5% 85%, rgba(255, 85, 0, 0.035) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.9rem);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.hero h1 .ac { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 470px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.75rem;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-stat-lbl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}

.hv-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hv-ring-1 {
  width: 360px; height: 360px;
  border: 1px solid rgba(255, 85, 0, 0.1);
}

.hv-ring-2 {
  width: 255px; height: 255px;
  border: 1px solid rgba(255, 85, 0, 0.16);
}

.hv-ring-3 {
  width: 150px; height: 150px;
  border: 1px solid rgba(255, 85, 0, 0.22);
  background: rgba(255, 85, 0, 0.03);
}

.hv-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 85, 0, 0.6);
}

.hv-card {
  position: absolute;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1rem 1.35rem;
  min-width: 130px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.hv-card-a { top: -8px; right: -18px; }
.hv-card-b { bottom: 50px; left: -30px; }
.hv-card-c { bottom: -8px; right: 24px; }

.hv-card-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hv-card-lbl {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ============================================================
   ABOUT / WHO WE HELP
   ============================================================ */
.about-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.875rem 1.1rem;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--off-white);
  transition: border-color 0.2s, transform 0.2s;
}

.industry-chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.industry-icon { font-size: 1.15rem; }

.about-quote {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-quote .hl { color: var(--accent); }

.about-note {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  align-items: stretch;
  margin: 0 auto;
}

.pricing-grid-two .pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-grid-two .pricing-desc {
  flex: 0;
}

.pricing-grid-two .pricing-features {
  flex: 1;
}

.pricing-grid-three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  align-items: stretch;
  margin: 0 auto;
}

.pricing-grid-three .pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-grid-three .pricing-desc {
  flex: 0;
}

.pricing-grid-three .pricing-features {
  flex: 1;
}

@media (max-width: 900px) {
  .pricing-grid-three {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* Combo hero grid */
.pricing-combo-grid {
  max-width: 1100px;
  margin: 0 auto;
}

/* Combo card accent */
.combo-card {
  border-color: rgba(41, 121, 255, 0.35);
  background: linear-gradient(150deg, rgba(41, 121, 255, 0.07) 0%, var(--bg3) 60%);
}

/* Pricing group sub-label */
.pricing-group-sub {
  font-size: 0.85rem;
  color: var(--text2);
  margin: -0.5rem 0 1.5rem 0;
}

/* Secondary two-column layout */
.pricing-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.pricing-secondary-col {
  display: flex;
  flex-direction: column;
}

/* Stacked compact cards */
.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Compact card variant */
.pricing-card-sm {
  padding: 1.25rem 1.5rem;
}

.pricing-sm-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.pricing-price-sm {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text1);
  line-height: 1;
  white-space: nowrap;
}

.pricing-price-sm sup {
  font-size: 0.9rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 1px;
}

.pricing-features-sm {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pricing-features-sm .pricing-feat {
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Compact CTA */
.pricing-cta-sm {
  display: block;
  text-align: center;
  border: 1px solid var(--border2);
  border-radius: 7px;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text1);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.pricing-cta-sm:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 900px) {
  .pricing-secondary-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing group labels */
.pricing-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem 0;
}

/* Divider between one-time and monthly sections */
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border2);
  margin: 3.5rem 0 3rem 0;
}

/* "then $X/month after" line on combo cards */
.pricing-then {
  font-size: 0.8rem;
  color: var(--text2);
  margin: -0.15rem 0 1.25rem 0;
  font-weight: 500;
}

/* /mo suffix on monthly prices */
.pricing-per {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text2);
  margin-left: 2px;
}

/* Sub-labels inside radio group */
.radio-group-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem 0;
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(150deg, rgba(41, 121, 255, 0.13) 0%, var(--bg3) 60%);
  box-shadow: 0 0 0 1px rgba(41, 121, 255, 0.25), 0 8px 32px rgba(41, 121, 255, 0.12);
  transform: translateY(-6px);
}

.pricing-card.featured:hover {
  transform: translateY(-10px);
}

.premium-card {
  border-color: rgba(212, 175, 55, 0.5) !important;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.07) 0%, var(--bg3) 60%) !important;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(212, 175, 55, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.premium-badge {
  background: linear-gradient(90deg, #b8922a, #d4af37, #b8922a);
  color: #1a1200;
}

.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pricing-price sup {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 0.7rem;
  display: inline-block;
  color: var(--muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.25rem;
}

.pricing-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.5;
}

.pricing-check {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.875rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid var(--border2);
  color: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pricing-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-card.featured .pricing-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.pricing-card.featured .pricing-cta:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
}

/* ============================================================
   OUR WORK / PORTFOLIO
   ============================================================ */
.work-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.work-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border2);
  transition: transform 0.25s, border-color 0.25s;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

/* Browser Chrome */
.mock-chrome {
  background: #242424;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.md-r { background: #FF5F56; }
.md-y { background: #FFBD2E; }
.md-g { background: #27C93F; }

.mock-url {
  flex: 1;
  background: #181818;
  border-radius: 4px;
  height: 20px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.mock-url span {
  font-size: 10px;
  color: #666;
  font-family: monospace;
  letter-spacing: 0;
}

/* Mock site canvas */
.mock-site {
  height: 210px;
  overflow: hidden;
}

/* ---- HVAC Site ---- */
.ms-hvac { background: linear-gradient(155deg, #082156 0%, #0d3380 100%); }

.ms-nav {
  padding: 9px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ms-logo-bar { height: 9px; border-radius: 2px; background: rgba(255,255,255,0.9); width: 68px; }

.ms-nav-r {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ms-nav-link { height: 5px; width: 24px; border-radius: 2px; background: rgba(255,255,255,0.35); }

.ms-nav-btn {
  height: 18px; width: 54px; border-radius: 3px;
  background: #2979FF;
  display: flex; align-items: center; justify-content: center;
}

.ms-nav-btn-inner { height: 5px; width: 32px; border-radius: 2px; background: rgba(255,255,255,0.85); }

.ms-hero { padding: 14px 14px 10px; text-align: center; }

.ms-h1-bar {
  height: 12px; border-radius: 3px; background: rgba(255,255,255,0.88);
  width: 72%; margin: 0 auto 5px;
}

.ms-h2-bar {
  height: 8px; border-radius: 2px; background: rgba(255,255,255,0.4);
  width: 52%; margin: 0 auto 12px;
}

.ms-hero-btn {
  display: inline-block;
  height: 22px; width: 80px;
  border-radius: 4px; background: #2979FF;
}

.ms-cards {
  display: flex;
  gap: 7px;
  padding: 10px 14px;
}

.ms-card {
  flex: 1;
  border-radius: 4px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ---- Plumbing Site ---- */
.ms-plumbing { background: linear-gradient(155deg, #0C1829 0%, #152B4A 100%); }

.ms-pl-nav {
  padding: 9px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ms-pl-logo { height: 9px; width: 60px; border-radius: 2px; background: #FFD000; }

.ms-pl-hero {
  padding: 16px 14px 8px;
}

.ms-pl-phone {
  height: 22px; width: 65%; border-radius: 4px;
  background: #FFD000;
  margin-bottom: 8px;
}

.ms-pl-sub {
  height: 7px; width: 50%; border-radius: 2px;
  background: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.ms-pl-btn {
  height: 20px; width: 70px; border-radius: 3px;
  background: rgba(255,208,0,0.25);
  border: 1px solid rgba(255,208,0,0.5);
}

.ms-pl-strip {
  background: rgba(255,208,0,0.08);
  border-top: 1px solid rgba(255,208,0,0.15);
  padding: 10px 14px;
  display: flex;
  gap: 7px;
}

.ms-pl-si {
  flex: 1;
  height: 38px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}

/* ---- Roofing Site ---- */
.ms-roofing { background: linear-gradient(155deg, #1A0A00 0%, #2C1500 100%); }

.ms-rf-nav {
  padding: 9px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ms-rf-logo { height: 9px; width: 64px; border-radius: 2px; background: #E05A00; }

.ms-rf-hero { padding: 16px 14px; }

.ms-rf-h1 {
  height: 14px; width: 78%; border-radius: 3px;
  background: rgba(255,255,255,0.85);
  margin-bottom: 7px;
}

.ms-rf-h2 {
  height: 8px; width: 55%; border-radius: 2px;
  background: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.ms-rf-btn {
  height: 22px; width: 90px; border-radius: 4px;
  background: #E05A00;
  margin-bottom: 14px;
}

.ms-rf-features { display: flex; flex-direction: column; gap: 6px; }

.ms-rf-feat {
  height: 7px; border-radius: 2px;
  background: rgba(255,255,255,0.2);
}

/* Work card info */
.work-info {
  padding: 1.35rem 1.5rem;
  background: var(--bg3);
}

.work-client {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.work-type {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.work-tags {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.work-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--bg2);
  color: #555;
  border: 1px solid var(--border);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.why-card {
  padding: 2.5rem;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  transition: border-color 0.25s, transform 0.25s;
}

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

.why-num {
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--accent);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.why-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { position: sticky; top: 6rem; }

.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }

.c-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.c-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.c-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.c-value a { transition: color 0.2s; }
.c-value a:hover { color: var(--accent); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted2); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option { background: var(--bg3); color: var(--white); }

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Radio button group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.radio-option:hover { border-color: #444; }

.radio-option input[type="radio"] { display: none; }

.radio-box {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--muted2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.15s;
}

.radio-option input[type="radio"]:checked ~ .radio-box { border-color: var(--accent); }
.radio-option input[type="radio"]:checked ~ .radio-box .radio-dot { opacity: 1; }
.radio-option:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background: rgba(255, 85, 0, 0.05);
}

.radio-label {
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.4;
}

.radio-group.shake {
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.form-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font);
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.form-submit:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 85, 0, 0.3);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
}

.form-success.visible { display: block; }

.fs-icon {
  width: 68px; height: 68px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.form-success p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-left { display: flex; flex-direction: column; gap: 0.35rem; }

.footer-logo { display: flex; align-items: baseline; gap: 0.4rem; }

.footer-logo-crow { font-size: 1.15rem; font-weight: 900; color: var(--accent); letter-spacing: -0.04em; }

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-rest { font-size: 0.72rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: #3A3A3A;
  margin-top: 0.4rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}

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

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 3.8rem); }
  .hero-sub { max-width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

  .work-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

  .why-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { position: static; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }
  .hero { padding: 6.5rem 1.25rem 3.5rem; }
  .hero-stats { gap: 1.75rem; }
  .pricing-head { flex-direction: column; align-items: flex-start; }
  .industry-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.75rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .form-submit { align-self: stretch; text-align: center; }
}

/* ============================================================
   INDUSTRY PAGES
   ============================================================ */
.ind-page { padding: 7rem 0 5rem; }

.ind-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.ind-back:hover { color: var(--white); }

.ind-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.ind-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.ind-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.ind-body-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
}

.ind-mockup-wrap {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

.ind-chrome {
  background: #242424;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ind-chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.icd-r { background: #FF5F56; }
.icd-y { background: #FFBD2E; }
.icd-g { background: #27C93F; }

.ind-url-bar {
  flex: 1;
  background: #181818;
  border-radius: 4px;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.ind-url-bar span { font-size: 11px; color: #555; font-family: monospace; }

.ind-site { height: 340px; overflow: hidden; }

.ind-site-hvac       { background: linear-gradient(155deg, #061852 0%, #0c2980 100%); }
.ind-site-plumbing   { background: linear-gradient(155deg, #050f1f 0%, #0b1e38 100%); }
.ind-site-electrical { background: linear-gradient(155deg, #0d0d08 0%, #181810 100%); }
.ind-site-roofing    { background: linear-gradient(155deg, #111111 0%, #1e1a1a 100%); }
.ind-site-general    { background: linear-gradient(155deg, #091510 0%, #0f2018 100%); }
.ind-site-windows    { background: linear-gradient(155deg, #091828 0%, #0f2236 100%); }

.ind-sitenav {
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ind-logo-bar { height: 10px; border-radius: 3px; }
.ind-nav-r { display: flex; align-items: center; gap: 8px; }
.ind-nav-link-bar { height: 6px; width: 28px; border-radius: 2px; background: rgba(255,255,255,0.3); }
.ind-nav-btn {
  height: 22px; width: 72px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.ind-nav-btn-inner { height: 6px; width: 48px; border-radius: 2px; background: rgba(255,255,255,0.85); }

.ind-hero { padding: 18px 18px 10px; }
.ind-hero-h1 { height: 18px; border-radius: 3px; background: rgba(255,255,255,0.88); margin-bottom: 6px; }
.ind-hero-sub { height: 10px; border-radius: 2px; background: rgba(255,255,255,0.38); margin-bottom: 16px; }
.ind-hero-btn { height: 28px; width: 110px; border-radius: 5px; margin-bottom: 14px; }

.ind-features { display: flex; gap: 10px; padding: 0 18px; margin-bottom: 12px; }
.ind-feat-card {
  flex: 1; border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px;
}
.ind-feat-icon { height: 16px; width: 16px; border-radius: 3px; margin-bottom: 8px; }
.ind-feat-line { height: 6px; border-radius: 2px; background: rgba(255,255,255,0.28); margin-bottom: 5px; }
.ind-feat-line-s { height: 5px; width: 55%; border-radius: 2px; background: rgba(255,255,255,0.15); }

.ind-phone-strip {
  margin: 0 18px;
  padding: 10px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.ind-phone-icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: rgba(255,255,255,0.12); }
.ind-phone-lines { display: flex; flex-direction: column; gap: 5px; }
.ind-phone-num-bar { height: 14px; width: 130px; border-radius: 3px; }
.ind-phone-sub-bar { height: 7px; width: 85px; border-radius: 2px; background: rgba(255,255,255,0.28); }

.ind-cta-section { text-align: center; }

@media (max-width: 600px) {
  .ind-page { padding: 6rem 0 4rem; }
  .ind-site { height: 280px; }
}
