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

:root {
  --navy:   #0b1b2e;
  --navy2:  #112240;
  --navy3:  #1a3358;
  --gold:   #3ab549;
  --gold2:  #4dcf5e;
  --white:  #ffffff;
  --gray:   #94a3b8;
  --light:  #f1f5f9;
  --text:   #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.gold { color: var(--gold); }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-nav {
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
}
.btn-nav:hover { background: var(--gold2); }

/* ── Nav ── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-wrapper.scrolled {
  background: rgba(11,27,46,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: opacity var(--transition);
}
.logo-img:hover { opacity: 0.85; }
.logo-accent { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 4px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; padding-bottom: 0.5rem; margin-bottom: -0.5rem; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  padding-top: 1rem;
  min-width: 220px;
  box-shadow: var(--shadow);
  list-style: none;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.blog-hidden { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
}
.nav-overlay.open { display: block; }
.nav-close-li { display: none; }
.nav-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 45vw, 620px);
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.stat span { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.chevron {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--gold);
  padding: 0.85rem 0;
}
.trust-inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-inner span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-desc { color: var(--gray); font-size: 1.05rem; }

/* ── About ── */
.about { background: var(--navy2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-card {
  background: var(--navy3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition);
}
.about-card:hover { transform: translateX(6px); }
.about-card.accent {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-color: rgba(201,168,76,0.35);
}
.about-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.about-card-title { font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.about-card p { font-size: 0.9rem; color: var(--gray); }

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.about-text p { color: var(--gray); margin-bottom: 1rem; }
.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.25rem 0 2rem;
}
.about-list li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}
.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Services ── */
.services-section { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--navy2) 0%, rgba(201,168,76,0.06) 100%);
}
.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.25rem; }
.service-link { font-size: 0.875rem; font-weight: 600; color: var(--gold); transition: gap var(--transition); }
.service-link:hover { color: var(--gold2); }

/* ── Process ── */
.process-section { background: var(--navy2); }
.process-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--navy3);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.15);
}
.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--gray); }
.step-arrow { font-size: 1.5rem; color: var(--gold); opacity: 0.5; }

/* ── FAQ ── */
.faq-section { background: var(--navy); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}
.faq-category h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--gold); flex-shrink: 0; }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a {
  display: none;
  font-size: 0.875rem;
  color: var(--gray);
  padding-bottom: 1rem;
  line-height: 1.65;
}
.faq-a.open { display: block; }

/* ── Blog ── */
.blog-section { background: var(--navy2); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(58,181,73,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.blog-card.featured {
  border-color: rgba(58,181,73,0.35);
  background: linear-gradient(135deg, var(--navy) 0%, rgba(58,181,73,0.06) 100%);
}
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(58,181,73,0.12);
  border: 1px solid rgba(58,181,73,0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  width: fit-content;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.blog-date { font-size: 0.8rem; color: var(--gray); }
.blog-read { font-size: 0.85rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.blog-read:hover { color: var(--gold2); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy2) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 4rem 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-inner p { color: var(--gray); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: var(--navy2); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-col p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: var(--gray); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col address p { font-size: 0.875rem; color: var(--gray); margin-bottom: 0.6rem; }
.footer-col address a { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  transition: background var(--transition), border-color var(--transition);
}
.social-links a:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }
.compliance { font-size: 0.75rem !important; max-width: 500px; text-align: right; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: 2; }
  .about-text { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .hamburger { display: flex; order: -1; }
  .logo { flex: 1; justify-content: center; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 280px;
    background: rgba(11, 27, 46, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 99;
    box-shadow: 4px 0 30px rgba(0,0,0,0.5);
    padding: 5rem 0 2rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav-links li:first-of-type:not(.nav-close-li) {
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    padding: 1.15rem 2.5rem;
    text-align: left;
    width: 100%;
    border: none;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.03em;
    display: block;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-close-li { display: block; padding: 0 1rem 1rem; }
  .nav-links .btn-nav {
    background: var(--gold) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    margin: 1rem 2.5rem;
    padding: 0.75rem 1.5rem !important;
    text-align: center !important;
    width: auto !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
  }
  .dropdown { position: static; background: none; border: none; box-shadow: none; padding: 0; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .compliance { text-align: center !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  .hero-content { max-width: 100%; padding-top: 5rem; padding-bottom: 2rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; flex-direction: column; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .hero-watermark { display: none; }
  .trust-inner { gap: 1rem; flex-wrap: wrap; }
  .trust-inner span { font-size: 0.7rem; }
  .section { padding: 3rem 0; }
  .services-grid { grid-template-columns: 1fr !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .majrpro-features { grid-template-columns: 1fr !important; }
  .majrpro-crm-grid { grid-template-columns: 1fr !important; }
  .majrpro-banner { padding: 1.5rem; overflow: hidden; }
  .majrpro-section { overflow: hidden; }
  .majrpro-logo { height: 80px; }
  .majrpro-content h2 { font-size: 1.4rem; }
  .majrpro-cta { flex-direction: column; align-items: center; }
  .cta-inner h2 { font-size: 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ── MAJR Pro Section ── */
.majrpro-section { background: linear-gradient(135deg, #0a2e1a 0%, #0b1b2e 50%, #0a2e1a 100%); }
.majrpro-banner {
  border: 1px solid rgba(218, 165, 32, 0.25);
  border-radius: var(--radius);
  padding: 3rem;
  background: linear-gradient(145deg, rgba(10, 46, 26, 0.6), rgba(17, 34, 64, 0.8));
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.majrpro-logo {
  height: 150px;
  display: block;
  margin: 0 auto 0.75rem;
}
.majrpro-badge {
  display: inline-block;
  background: rgba(218, 165, 32, 0.15);
  color: #daa520;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(218, 165, 32, 0.3);
  margin-bottom: 1.25rem;
}
.majrpro-brand {
  color: #daa520;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.majrpro-content { text-align: center; }
.majrpro-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.majrpro-content > p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.majrpro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.majrpro-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.majrpro-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.15rem; }
.majrpro-feature strong { color: var(--white); display: block; margin-bottom: 0.35rem; font-size: 0.95rem; }
.majrpro-feature p { color: var(--gray); font-size: 0.85rem; line-height: 1.5; margin: 0; }
.majrpro-subheading {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.majrpro-subtitle {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.majrpro-crm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.majrpro-crm-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: left;
}
.majrpro-crm-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.majrpro-crm-card strong { color: var(--white); display: block; margin-bottom: 0.35rem; font-size: 0.9rem; }
.majrpro-crm-card p { color: var(--gray); font-size: 0.8rem; line-height: 1.5; margin: 0; }
.majrpro-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.majrpro-subtitle { margin-left: auto; margin-right: auto; max-width: 600px; }
