/* assets/css/leasing-services.css - SIMPLE LEASING PAGE */

:root {
  --primary: #012970;
  --accent: #fcb614;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --text: #475569;
  --text-light: #64748b;
}

/* Hero */
.leasing-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;
}

.service-badge,
.main-title,
.hero-text,
.stat-number,
.stat-label,
.hero-cta {
  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;
}

.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;
}
.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 */
.benefits-section,
.equipment-section,
.leasing-calculator,
.comparison-section {
  padding: 100px 0;
}

.benefits-section,
.equipment-section {
  background: var(--white);
}
.leasing-calculator {
  background: var(--bg-light);
}
.comparison-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;
}

.section-header p {
  color: var(--text);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefit-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;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-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;
}

.benefit-item h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefit-item p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.equip-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.equip-card.servers {
  border-top-color: #00a4ef;
}
.equip-card.networking {
  border-top-color: #e95420;
}
.equip-card.storage {
  border-top-color: #1797c0;
}
.equip-card.workstations {
  border-top-color: #00bc00;
}

.equip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.equip-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.equip-card.servers .equip-icon {
  background: rgba(0, 164, 239, 0.1);
  color: #00a4ef;
}
.equip-card.networking .equip-icon {
  background: rgba(233, 84, 32, 0.1);
  color: #e95420;
}
.equip-card.storage .equip-icon {
  background: rgba(23, 151, 192, 0.1);
  color: #1797c0;
}
.equip-card.workstations .equip-icon {
  background: rgba(0, 188, 0, 0.1);
  color: #00bc00;
}

.equip-card h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.equip-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Calculator */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.calc-form {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calc-button {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: var(--primary);
  border: none;
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(252, 182, 20, 0.4);
  transition: all 0.3s ease;
}

.calc-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(252, 182, 20, 0.5);
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-item {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.result-label {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

.result-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

/* Comparison Table */
.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.table-header {
  background: linear-gradient(135deg, var(--primary), #0148a3);
  color: white;
  padding: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.table-row {
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.table-row:last-child {
  border-bottom: none;
}

.row-label {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}

.value {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.value.good {
  color: var(--accent);
}
.value.bad {
  color: #ef4444;
}

.total .value {
  font-size: 18px;
}

/* CTA */
.leasing-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-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.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);
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.cta-phone:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 992px) {
  .hero-grid,
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0px;
  }

  .hero-image {
    order: -1;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .benefits-section,
  .equipment-section,
  .leasing-calculator,
  .comparison-section {
    padding: 20px 0;
  }
  .leasing-hero {
    padding: 80px 20px 60px;
  }

  .hero-stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    justify-content: 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;
  }

  .benefits-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
