/* ==========================================================================
   MCM Tech Solutions Website Styles
   Style A — Modern & Bold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #F26522;
  --orange-light: #fff5ef;
  --orange-dark: #c4501a;
  --black: #1a1a1a;
  --gray-900: #2a2a2a;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ddd;
  --gray-100: #f5f5f5;
  --gray-50: #fafafa;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ===========================================================================
   Header / Nav
   =========================================================================== */
.header {
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-logo { height: 38px; }
.nav { display: flex; gap: 36px; }
.nav a {
  color: var(--black);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--orange); }
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}
.header-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--orange-dark); }

/* ===========================================================================
   Hero Sections
   =========================================================================== */
.hero {
  background: var(--white);
  padding: 80px 60px 100px;
  position: relative;
  overflow: hidden;
}
.hero-orange-block {
  position: absolute;
  right: -100px;
  top: 60px;
  width: 500px;
  height: 500px;
  background: var(--orange);
  border-radius: 8px;
  transform: rotate(8deg);
  z-index: 0;
}
.hero-black-accent {
  position: absolute;
  right: 280px;
  top: 200px;
  width: 200px;
  height: 200px;
  background: var(--black);
  border-radius: 8px;
  transform: rotate(-5deg);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: 19px;
  color: var(--gray-700);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Inner page hero - smaller */
.page-hero {
  background: var(--white);
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-orange-block {
  width: 380px;
  height: 380px;
  top: 30px;
  right: -80px;
}
.page-hero .hero-black-accent {
  width: 140px;
  height: 140px;
  top: 140px;
  right: 230px;
}
.page-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.page-hero p {
  font-size: 19px;
  color: var(--gray-700);
  max-width: 620px;
  line-height: 1.6;
}

/* ===========================================================================
   Buttons
   =========================================================================== */
.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gray-900); }
.btn-secondary {
  background: var(--white);
  color: var(--black);
  padding: 18px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--black);
  display: inline-block;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-orange:hover { background: var(--orange-dark); }

/* ===========================================================================
   Sections
   =========================================================================== */
.section { padding: 100px 60px; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--black); color: var(--white); }

.section-eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}
.section-subtitle {
  margin-top: 16px;
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===========================================================================
   Service Cards
   =========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Detail service blocks (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .detail-content { order: 2; }
.service-detail.reverse .detail-visual { order: 1; }
.detail-content .service-icon { margin-bottom: 24px; }
.detail-content h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.detail-content .lead {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}
.detail-list { list-style: none; padding: 0; }
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-900);
}
.detail-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Visual block for service details */
.detail-visual {
  background: linear-gradient(135deg, var(--gray-50) 0%, #ececec 100%);
  border-radius: 12px;
  aspect-ratio: 4/3;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.detail-visual-mockup {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ===========================================================================
   Stats
   =========================================================================== */
.stats {
  background: var(--black);
  color: var(--white);
  padding: 64px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.stat-label {
  font-size: 15px;
  color: #ccc;
  font-weight: 500;
}

/* ===========================================================================
   CTA Section
   =========================================================================== */
.cta-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--orange);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(40px);
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-section h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================================================================
   Footer
   =========================================================================== */
.footer {
  background: #0f0f0f;
  color: #ccc;
  padding: 60px 60px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand .footer-logo { height: 36px; margin-bottom: 18px; filter: invert(1) brightness(2); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: #aaa; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 6px 0; }
.footer-col a { font-size: 14px; color: #aaa; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
}

/* ===========================================================================
   Contact Page
   =========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 80px 60px;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--black);
  transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--gray-50);
  padding: 28px;
  border-radius: 8px;
  display: flex;
  gap: 16px;
}
.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.info-card h4 { font-size: 13px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-weight: 600; }
.info-card-value { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.info-card-meta { font-size: 13px; color: var(--gray-700); }

/* ===========================================================================
   WatchPoint Page Specific
   =========================================================================== */
:root { --wp-navy: #27376e; }

.wp-hero { background: var(--white); padding: 80px 60px; position: relative; overflow: hidden; }
.wp-hero .hero-orange-block { background: var(--wp-navy); }
.wp-hero-badge {
  display: inline-block;
  background: #eef0fa;
  color: var(--wp-navy);
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.wp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wp-feature {
  background: var(--white);
  border: 1px solid #eee;
  padding: 28px 24px;
  border-radius: 8px;
  transition: all 0.2s;
}
.wp-feature:hover { border-color: var(--wp-navy); transform: translateY(-2px); }
.wp-feature-icon {
  width: 44px;
  height: 44px;
  background: #eef0fa;
  color: var(--wp-navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.wp-feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.wp-feature p { font-size: 14px; color: var(--gray-700); line-height: 1.6; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 2px solid #eee;
  padding: 36px 30px;
  border-radius: 12px;
  text-align: center;
}
.price-card.featured {
  border-color: var(--orange);
  position: relative;
  transform: scale(1.03);
}
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.price-tier { font-size: 14px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.price-size { font-size: 14px; color: var(--gray-700); margin-bottom: 24px; }
.price-amount { font-size: 56px; font-weight: 800; color: var(--black); line-height: 1; letter-spacing: -2px; margin-bottom: 4px; }
.price-period { font-size: 14px; color: var(--gray-500); margin-bottom: 8px; }
.price-setup { font-size: 13px; color: var(--gray-700); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #eee; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before { content: "✓"; color: var(--orange); font-weight: 700; }

/* ===========================================================================
   About page
   =========================================================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 60px;
}
.about-story img, .about-story .story-visual {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 12px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}
.about-story h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.about-story p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card { padding: 32px; }
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--gray-700); line-height: 1.7; }

/* ===========================================================================
   Mobile Navigation Toggle Button (hidden on desktop)
   =========================================================================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: space-around;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ===========================================================================
   TABLET (1024px and below)
   =========================================================================== */
@media (max-width: 1024px) {
  .header { padding: 16px 30px; }
  .nav { gap: 24px; }
  .nav a { font-size: 14px; }

  .hero { padding: 60px 30px 80px; }
  .hero h1 { font-size: 52px; }
  .hero p { font-size: 17px; }
  .hero-orange-block { width: 340px; height: 340px; right: -80px; top: 80px; }
  .hero-black-accent { width: 140px; height: 140px; right: 180px; top: 180px; }

  .page-hero { padding: 60px 30px 50px; }
  .page-hero h1 { font-size: 44px; }
  .page-hero .hero-orange-block { width: 280px; height: 280px; }
  .page-hero .hero-black-accent { width: 100px; height: 100px; right: 170px; }

  .section { padding: 70px 30px; }
  .section h2 { font-size: 38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 50px 30px; }

  .service-detail { gap: 50px; padding: 60px 0; grid-template-columns: 1fr 1fr; }
  .detail-content h2 { font-size: 34px; }

  .about-story { gap: 50px; padding: 60px 30px; }
  .about-story h2 { font-size: 36px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 20px; }
  .price-card.featured { transform: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 30px; }

  .cta-section { padding: 60px 30px; }
  .cta-section h2 { font-size: 36px; }

  .footer { padding: 50px 30px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ===========================================================================
   MOBILE (768px and below)
   =========================================================================== */
@media (max-width: 768px) {
  /* Header & Mobile Nav */
  .header { padding: 14px 20px; position: sticky; top: 0; z-index: 1000; }
  .header-logo { height: 32px; }
  .header-cta { display: none; }

  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a.active::after { display: none; }
  .nav a.active { color: var(--orange); background: var(--orange-light); }
  .nav .header-cta {
    display: block;
    margin: 14px 20px 0;
    padding: 14px 20px;
    text-align: center;
    border-radius: 6px;
  }

  /* Hero */
  .hero { padding: 40px 20px 60px; }
  .hero h1 { font-size: 38px; line-height: 1.1; letter-spacing: -0.5px; }
  .hero p { font-size: 16px; margin-bottom: 28px; }
  .hero-orange-block { width: 200px; height: 200px; right: -60px; top: 30px; opacity: 0.6; }
  .hero-black-accent { display: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .hero-buttons .btn-orange { text-align: center; padding: 16px 24px; font-size: 15px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 14px; }

  /* Page hero (inner pages) */
  .page-hero { padding: 40px 20px 30px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero p { font-size: 16px; }
  .page-hero .hero-orange-block { width: 160px; height: 160px; opacity: 0.5; }
  .page-hero .hero-black-accent { display: none; }

  /* Sections */
  .section { padding: 50px 20px; }
  .section h2 { font-size: 28px; line-height: 1.2; }
  .section-subtitle { font-size: 15px; }
  .section-header { margin-bottom: 36px; }

  /* Grids: stack everything to single column */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .wp-features-grid { grid-template-columns: 1fr; gap: 12px; }
  .values-grid { grid-template-columns: 1fr; gap: 12px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 20px; }
  .stat-num { font-size: 42px; }
  .stat-label { font-size: 13px; }

  /* Service detail (services page) */
  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0;
  }
  .service-detail.reverse .detail-content { order: 1; }
  .service-detail.reverse .detail-visual { order: 2; }
  .detail-content h2 { font-size: 28px; }
  .detail-content .lead { font-size: 16px; }
  .detail-list li { font-size: 14px; }
  .detail-visual { padding: 24px; aspect-ratio: auto; }

  /* About story */
  .about-story {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 20px;
  }
  .about-story h2 { font-size: 28px; }
  .about-story p { font-size: 15px; }
  .about-story .story-visual { aspect-ratio: 4/3; }

  /* Value cards */
  .value-card { padding: 20px 0; }

  /* Service cards */
  .service-card { padding: 24px 20px; }

  /* CTA section */
  .cta-section { padding: 50px 20px; }
  .cta-section h2 { font-size: 26px; }
  .cta-section p { font-size: 15px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-orange, .cta-buttons .btn-secondary { text-align: center; }

  /* Contact page */
  .contact-grid { padding: 40px 20px; gap: 30px; grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .info-card { padding: 20px; }
  .info-card-icon { width: 40px; height: 40px; font-size: 18px; }
  .info-card-value { font-size: 16px; }

  /* WatchPoint page */
  .wp-hero { padding: 40px 20px 50px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card.featured { transform: none; }
  .price-amount { font-size: 44px; }

  /* WatchPoint compliance section's 2-col layout */
  .section section { padding: 0 !important; }
  .section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Footer */
  .footer { padding: 40px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: left; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 12px;
  }

  /* Generic: any inline grid-template-columns: 1fr 1fr should stack on mobile */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ===========================================================================
   SMALL MOBILE (480px and below)
   =========================================================================== */
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 28px; }
  .section h2 { font-size: 26px; }
  .header { padding: 12px 16px; }
  .nav-toggle { width: 40px; height: 40px; }
}

/* ===========================================================================
   Hide the in-nav CTA on desktop (only shows in mobile menu)
   =========================================================================== */
.nav > .header-cta { display: none; }
@media (max-width: 768px) {
  .nav.open > .header-cta { display: block; }
  .nav:not(.open) > .header-cta { display: none; }
}

/* WatchPoint logo on mobile - prevent overflow */
@media (max-width: 768px) {
  .wp-hero img[alt="WatchPoint PD"] {
    height: auto !important;
    max-width: 220px;
    width: 100%;
    margin-bottom: 18px !important;
  }
}
