/* assets/css/remote-support.css - SIMPLE PAGE WITH TEXT CONTENT */

:root {
  --primary: #012970;
  --accent: #fcb614;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --text: #475569;
  --text-light: #64748b;
}

/* Hero Section */
.support-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  font-family: sans-serif;
}

.service-badge {
  background: var(--accent);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 24px;
}

.main-title {
  color: var(--primary);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.hero-text {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 450px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: sans-serif;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: var(--primary);
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(252, 182, 20, 0.4);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(252, 182, 20, 0.5);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Common Sections */
.coverage-section,
.process-section,
.sla-section,
.tiers-section {
  padding: 100px 0;
}

.coverage-section,
.process-section {
  background: var(--white);
}
.sla-section {
  background: var(--bg-light);
}
.tiers-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: sans-serif;
}

.section-header p {
  color: var(--text);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Coverage Grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.coverage-item {
  padding: 32px 24px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.coverage-item:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.coverage-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(252, 182, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.coverage-item h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.coverage-item p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  background: var(--accent);
  color: var(--primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(252, 182, 20, 0.3);
}

.step-item h4 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-item p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

/* SLA Table */
.sla-table {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.sla-header {
  background: linear-gradient(135deg, var(--primary), #0148a3);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 20px;
  padding: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sla-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.sla-row:hover {
  background: #f8fafc;
}

.sla-row:last-child {
  border-bottom: none;
}

.sla-row div {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--text);
}

.sla-row div:first-child {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

/* Support Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tier-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent);
  position: relative;
  transition: all 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.tier-card h4 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.tier-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.tier-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.tier-card li {
  color: var(--text);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.tier-card li:last-child {
  border-bottom: none;
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(252, 182, 20, 0.4);
}

/* CTA */
.support-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0148a3 100%);
  color: var(--white);
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-contact {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-phone,
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 18px 40px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(252, 182, 20, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(252, 182, 20, 0.5);
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0px;
  }

  .hero-image {
    order: -1;
  }

  .sla-header,
  .sla-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .process-steps {
    flex-direction: column;
  }

  .coverage-section,
  .process-section,
  .sla-section,
  .tiers-section {
    padding: 20px 0;
  }

  .step-item {
    flex: 1;
    text-align: center;
    padding: 0px 0px;
    position: relative;
  }
}

@media (max-width: 768px) {
  .support-hero {
    padding: 80px 20px 60px;
  }

  .hero-stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }

  .stat-item {
    flex: 1 !important;
    min-width: 90px !important;
    text-align: center !important;
  }

  .stat-number {
    font-size: 22px !important;
  }

  .stat-label {
    font-size: 12px !important;
  }

  .main-title {
    font-size: 26px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .cta-contact {
    flex-direction: column;
    align-items: center;
  }
}
