/* =========================================
   LANDMARK BUSINESS SOLUTIONS
   Main Stylesheet
   ========================================= */

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

:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --black: #111111;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-400: #aaaaaa;
  --gray-600: #666666;
  --gray-800: #333333;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1140px;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--red);
  height: var(--nav-height);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

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

.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

.nav-links .nav-dropdown {
  position: relative;
}

.nav-links .nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--red);
  min-width: 200px;
  padding: 8px 0;
  padding-top: 14px;
}

.nav-links .nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65) !important;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white) !important;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--red-dark) !important; }

/* =========================================
   HERO
   ========================================= */

.hero {
  background: var(--black);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(200,16,46,0.035) 0px,
    rgba(200,16,46,0.035) 1px,
    transparent 1px,
    transparent 48px
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow .line {
  width: 36px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  max-width: 640px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--red-dark); color: var(--white); }

.btn-ghost {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.trust-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================
   STATS BAR
   ========================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--gray-200);
}

.stat {
  padding: 32px 40px;
  border-right: 1px solid var(--gray-200);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 6px;
}

/* =========================================
   SECTION SHARED STYLES
   ========================================= */

.section { padding: 80px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--gray-100); }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-eyebrow .line {
  width: 36px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-eyebrow span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-dark h2 { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.section-dark .section-sub { color: rgba(255,255,255,0.5); }

/* =========================================
   SERVICE CARDS
   ========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.service-card:hover { background: #fafafa; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.service-card:hover::after { width: 100%; }

.service-num {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* =========================================
   WHY LANDMARK (DARK SECTION)
   ========================================= */

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.diff-points { display: flex; flex-direction: column; }

.diff-point {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.diff-point:first-child { padding-top: 0; }
.diff-point:last-child { border-bottom: none; }

.diff-num {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1px;
  padding-top: 3px;
  flex-shrink: 0;
  width: 24px;
}

.diff-point h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.diff-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.diff-right { display: flex; flex-direction: column; gap: 16px; }

.diff-quote {
  border: 1px solid rgba(200,16,46,0.25);
  border-left: 3px solid var(--red);
  padding: 32px;
}

.diff-quote blockquote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.diff-quote cite {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-style: normal;
  letter-spacing: 0.5px;
}

.diff-badges { display: flex; flex-direction: column; gap: 10px; }

.diff-badge {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.diff-badge svg {
  color: var(--red);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  border: 1px solid var(--gray-200);
  padding: 32px 28px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 72px;
  color: #f0f0f0;
  font-family: var(--font-serif);
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 38px;
  height: 38px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  font-family: var(--font-serif);
}

.author-name { font-size: 14px; font-weight: 700; color: var(--black); }
.author-biz { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* =========================================
   PRICING
   ========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.pricing-card {
  border: 1px solid var(--gray-200);
  padding: 36px 30px;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--red);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -1.5px;
  line-height: 1;
}

.pricing-amount span {
  font-size: 18px;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-range {
  font-size: 13px;
  color: var(--gray-400);
  margin: 8px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  transition: background 0.2s;
}

.pricing-cta:hover { background: var(--red); color: var(--white); }
.pricing-card.featured .pricing-cta { background: var(--red); }
.pricing-card.featured .pricing-cta:hover { background: var(--red-dark); }

.pricing-note {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 12px;
}

.pricing-note a { color: var(--red); font-weight: 600; }

/* =========================================
   CTA BANNER
   ========================================= */

.cta-banner {
  background: var(--red);
  padding: 64px 0;
}

.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  max-width: 440px;
  line-height: 1.3;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--red);
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-white:hover { background: #f0f0f0; }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: border-color 0.2s;
}

.btn-outline-white:hover { border-color: var(--white); }

/* =========================================
   CONTACT / GET STARTED FORM
   ========================================= */

.form-section { background: var(--gray-100); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-intro h2 { margin-bottom: 16px; }

.form-intro p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
}

.form-contact-items { display: flex; flex-direction: column; gap: 14px; }

.form-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-600);
}

.form-contact-item svg {
  color: var(--red);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-sans);
}

.form-submit:hover { background: var(--red-dark); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--black);
  margin-bottom: 12px;
}

.form-success p { font-size: 15px; color: var(--gray-600); }

/* =========================================
   BLOG
   ========================================= */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.blog-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}

.blog-card:hover { background: #fafafa; }

.blog-meta {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--black);
}

.blog-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-read {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: var(--black);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.footer-logo img { height: 36px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */

.page-hero {
  background: var(--black);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(200,16,46,0.035) 0px,
    rgba(200,16,46,0.035) 1px,
    transparent 1px,
    transparent 48px
  );
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 18px;
}

.page-hero h1 em { font-style: normal; color: var(--red); }

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero h1 { font-size: 38px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .cta-banner .container { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 32px; }
  .section { padding: 56px 0; }
  .footer-top { grid-template-columns: 1fr; }
}
