/* DMCloud Architect Template Styles */

:root {
  --dmca-orange: #FF8C42;
  --dmca-navy: #1B3A5F;
  --dmca-light-gray: #F8F9FA;
  --dmca-dark-gray: #343A40;
  --dmca-white: #FFFFFF;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--dmca-dark-gray);
  line-height: 1.6;
}

/* Header & Navigation */
.site-header .navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--dmca-dark-gray) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dmca-orange) !important;
}

.dropdown-item.active {
  background-color: var(--dmca-orange);
}

/* Buttons */
.btn-primary {
  background-color: var(--dmca-orange);
  border-color: var(--dmca-orange);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #E67A2E;
  border-color: #E67A2E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.btn-outline-primary {
  border-color: var(--dmca-orange);
  color: var(--dmca-orange);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--dmca-orange);
  border-color: var(--dmca-orange);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dmca-navy) 0%, #2B4A6F 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,140,66,0.1)" stroke-width="0.5"/></svg>') repeat;
  opacity: 0.5;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-section .btn {
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
}

/* Service Cards */
.service-card {
  border: 2px solid #E9ECEF;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  background: white;
}

.service-card:hover {
  border-color: var(--dmca-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card.featured {
  border-color: var(--dmca-orange);
  border-width: 3px;
  position: relative;
}

.service-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dmca-orange);
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.service-card h3 {
  color: var(--dmca-navy);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dmca-orange);
  margin-bottom: 0.5rem;
}

.service-card .price-note {
  color: #6C757D;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-card ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #F1F3F5;
  position: relative;
  padding-left: 1.75rem;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dmca-orange);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Featured card button styling */
.service-card.featured .btn-outline-primary {
  background-color: var(--dmca-orange);
  border-color: var(--dmca-orange);
  color: white;
}

.service-card.featured .btn-outline-primary:hover {
  background-color: #E67A2E;
  border-color: #E67A2E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.service-card.featured .btn-primary {
  background-color: var(--dmca-orange);
  border-color: var(--dmca-orange);
}

.service-card.featured .btn-primary:hover {
  background-color: #E67A2E;
  border-color: #E67A2E;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

/* About Section */
.about-section {
  background-color: var(--dmca-light-gray);
}

.about-section h2 {
  color: var(--dmca-navy);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.credential-badge {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--dmca-orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.credential-badge h4 {
  color: var(--dmca-navy);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.credential-badge p {
  margin: 0;
  color: #6C757D;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dmca-orange) 0%, #E67A2E 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .btn-light {
  background-color: white;
  color: var(--dmca-orange);
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  border: none;
}

.cta-section .btn-light:hover {
  background-color: #F8F9FA;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
  background-color: #212529 !important;
}

.site-footer h5 {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.site-footer a:hover {
  color: var(--dmca-orange) !important;
  text-decoration: underline !important;
}

/* Utilities */
.section-title {
  color: var(--dmca-navy);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: #6C757D;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
}

.text-orange {
  color: var(--dmca-orange) !important;
}

.text-navy {
  color: var(--dmca-navy) !important;
}

.bg-light-gray {
  background-color: var(--dmca-light-gray) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-section .lead {
    font-size: 1.125rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.875rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Hero Section Background - Gradient + Image */
.hero-section {
  position: relative;
  overflow: hidden;
  
  /* Multiple backgrounds: gradient overlay OVER the image */
  background-image: 
    linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 152, 219, 0.85) 100%),
    url('/assets/images/hero-strategy-call.jpg');
  
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
}

/* Optional: Subtle pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Ensure content is above background */
.hero-section > * {
  position: relative;
  z-index: 1;
}

/* ========================================
   DMCA Monitor – Additional Components
   ======================================== */

/* Monitor hero – pure gradient, no background image */
.hero-section.hero-monitor {
  background-image: linear-gradient(135deg, #1B3A5F 0%, #0F2440 100%);
  padding: 4.5rem 0 4rem;
  min-height: auto;
}

/* Early Access pill badge */
.hero-badge-pill {
  display: inline-block;
  background: rgba(255, 140, 66, 0.18);
  color: var(--dmca-orange);
  border: 1px solid rgba(255, 140, 66, 0.4);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 1.25rem;
}

/* Terminal mockup */
.terminal-block {
  background: #0D1117;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.7;
}

.terminal-header {
  background: #21262D;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.terminal-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-header .dot:nth-child(1) { background: #FF5F56; }
.terminal-header .dot:nth-child(2) { background: #FFBD2E; }
.terminal-header .dot:nth-child(3) { background: #27C93F; }

.terminal-title {
  color: #8B949E;
  font-size: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}

.terminal-body {
  padding: 1.25rem 1.5rem;
}

.terminal-prompt { color: #3FB950; font-weight: bold; user-select: none; }
.terminal-cmd    { color: #E6EDF3; }
.terminal-out    { color: #8B949E; display: block; padding-left: 0; }
.terminal-ok     { color: #3FB950; display: block; }

/* Stats bar */
.stats-bar {
  background: var(--dmca-navy);
  color: white;
  padding: 1.75rem 0;
  border-bottom: 3px solid var(--dmca-orange);
}

.stats-bar .stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--dmca-orange);
  line-height: 1.2;
}

.stats-bar .stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

/* How it works – step cards */
.step-card {
  text-align: left;
  padding: 2.25rem 1.75rem;
  background: white;
  border-radius: 12px;
  border: 2px solid #E9ECEF;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: var(--dmca-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--dmca-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1.125rem;
}

.step-card h3 {
  color: var(--dmca-navy);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-card p { color: #6C757D; font-size: 0.9375rem; margin: 0; }

/* What it monitors – metric cards */
.monitor-card {
  background: white;
  border-radius: 12px;
  border: 2px solid #E9ECEF;
  padding: 2rem;
  height: 100%;
}

.monitor-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--dmca-orange);
}

.monitor-card-header h4 {
  color: var(--dmca-navy);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}

.monitor-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 140, 66, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dmca-orange);
  flex-shrink: 0;
}

.metric-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.metric-list li {
  padding: 0.5rem 0 0.5rem 1.625rem;
  border-bottom: 1px solid #F1F3F5;
  position: relative;
  color: #495057;
  font-size: 0.9375rem;
}

.metric-list li:last-child { border-bottom: none; }

.metric-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--dmca-orange);
  font-weight: 700;
}

/* Privacy trust bar */
.privacy-bar {
  background: var(--dmca-navy);
  color: white;
  padding: 2.5rem 0;
}

.privacy-bar h4 {
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: white;
  font-size: 1.125rem;
}

.privacy-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

.privacy-bar code {
  color: var(--dmca-orange);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

/* Sign-up form card */
.signup-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid #E9ECEF;
}

.plan-radio-group .plan-option {
  border: 2px solid #E9ECEF;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.625rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.plan-radio-group .plan-option:hover {
  border-color: var(--dmca-orange);
}

.plan-radio-group .plan-option.is-selected {
  border-color: var(--dmca-orange);
  background: rgba(255, 140, 66, 0.05);
}

.plan-option .plan-name {
  font-weight: 600;
  color: var(--dmca-navy);
  font-size: 0.9375rem;
}

.plan-option .plan-desc {
  font-size: 0.8125rem;
  color: #6C757D;
  margin-top: 0.1rem;
}

.plan-option .plan-price {
  font-weight: 700;
  color: var(--dmca-orange);
  margin-left: auto;
  font-size: 1rem;
  white-space: nowrap;
}

/* Benefits sidebar */
.benefit-item {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 140, 66, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dmca-orange);
  flex-shrink: 0;
}

.benefit-text h5 {
  font-weight: 600;
  color: var(--dmca-navy);
  margin-bottom: 0.2rem;
  font-size: 0.9375rem;
}

.benefit-text p {
  color: #6C757D;
  font-size: 0.875rem;
  margin: 0;
}

/* Thank you page */
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 140, 66, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dmca-orange);
  margin: 0 auto 1.5rem;
}

/* Responsive adjustments for monitor pages */
@media (max-width: 991px) {
  .terminal-block { margin-top: 2.5rem; }
  .stats-bar .stat-number { font-size: 1.5rem; }
}

@media (max-width: 767px) {
  .stats-bar { padding: 1.25rem 0; }
  .signup-card { padding: 1.75rem 1.25rem; }
}

/* ========================================
   Why This Is Different – two-column cards
   ======================================== */
.different-card {
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.different-card--problem {
  background: #F8F9FA;
  border: 2px solid #DEE2E6;
}

.different-card--problem h4 {
  color: #6C757D;
  font-weight: 600;
}

.different-card--solution {
  background: white;
  border: 2px solid var(--dmca-orange);
}

.different-card--solution h4 {
  color: var(--dmca-navy);
  font-weight: 700;
}

.different-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.different-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative;
  font-size: .9375rem;
}

.different-list li:last-child { border-bottom: none; }

.different-list--problem li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ADB5BD;
  font-weight: 700;
}

.different-list--solution li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dmca-orange);
  font-weight: 700;
}

/* Audience cards */
.audience-card {
  padding: 1.25rem 0.75rem;
  background: white;
  border-radius: 10px;
  border: 2px solid #E9ECEF;
  transition: border-color .3s, transform .3s;
}

.audience-card:hover {
  border-color: var(--dmca-orange);
  transform: translateY(-3px);
}

.audience-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,140,66,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dmca-orange);
  margin: 0 auto .75rem;
}

.audience-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dmca-navy);
  line-height: 1.3;
}

/* Pricing feature comparison table */
.comparison-table {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #E9ECEF;
}

.comparison-table thead th {
  background: var(--dmca-navy);
  color: white;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border: none;
  font-size: .9375rem;
}

.comparison-table thead th.comparison-col-featured {
  background: var(--dmca-orange);
}

.comparison-table tbody td {
  padding: .75rem 1.25rem;
  border-color: #F1F3F5;
  vertical-align: middle;
  font-size: .9375rem;
}

.comparison-table tbody tr:hover td {
  background: #FFFBF7;
}

.comparison-group-header td {
  background: #F8F9FA;
  font-weight: 700;
  color: var(--dmca-navy);
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .5rem 1.25rem;
}

.comparison-col-featured {
  background: rgba(255,140,66,.08);
}

.comparison-featured-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 2px 8px;
  margin-bottom: 4px;
  letter-spacing: .02em;
}

.comparison-price-row th {
  padding-top: 2px;
  padding-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 800;
}

.comparison-price-row .comparison-col-featured {
  font-size: 1.35rem;
}

.comparison-check { color: #27C93F; font-size: 1.125rem; font-weight: 700; }
.comparison-cross  { color: #CED4DA; }

/* Install page steps */
.install-step {
  padding: 1.75rem;
  background: white;
  border-radius: 12px;
  border: 2px solid #E9ECEF;
}

.install-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.install-step-num {
  display: inline-block;
  background: var(--dmca-orange);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .75rem;
  border-radius: 20px;
  letter-spacing: .3px;
  white-space: nowrap;
}

.install-step-header h3 {
  color: var(--dmca-navy);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
}