.service-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
}

.service-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}

.service-hero h1 span {
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-section {
  padding: 80px 0;
}

.service-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.service-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.service-section .section-label {
  margin-bottom: 12px;
  text-align: center;
}

.service-section .section-desc {
  margin-top: 0;
  margin-bottom: 40px;
}

.service-intro {
  max-width: 800px;
  margin: -16px auto 0;
  padding-bottom: 24px;
}

.service-intro p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .3s, border-color .3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.3);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card h3::before {
  content: '\2713';
  color: var(--cyan);
  margin-right: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-list-centered {
  max-width: 720px;
  margin: 40px auto 0;
}

.service-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.type-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
  opacity: 0;
  transition: opacity .3s;
}

.type-card:hover::before {
  opacity: 1;
}

.type-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
}

.type-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.type-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-table-wrap {
  max-width: 720px;
  margin: 40px auto 0;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.pricing-table th {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}

.pricing-table td {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--card-border);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table td:last-child {
  font-weight: 700;
  color: var(--yellow);
  text-align: right;
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.3);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.why-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 700;
}

.why-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.use-case-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
}

.use-case-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--orange);
}

.use-case-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.audience-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.audience-item .ai-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.audience-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.audience-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.note-block {
  background: rgba(255, 107, 53, 0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px auto;
  max-width: 800px;
}

.note-block p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.note-block strong {
  color: var(--orange);
}

.service-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.06) 100%);
}

.service-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}

.service-cta p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  border: none;
  cursor: pointer;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 46, 99, 0.4);
}

.cta-btn-secondary {
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}

.cta-btn-secondary:hover {
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-2px);
}

.service-cta [data-messenger-type] {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  border: 1px solid transparent;
  color: #fff;
  margin-top: 0;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: transform .3s, box-shadow .3s;
}

.service-cta [data-messenger-type]:hover {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 46, 99, 0.4);
}

.service-cta [data-messenger-type] img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.service-cta .contact-email {
  margin-top: 0;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  border: 1px solid transparent;
  color: #fff;
  font-weight: 700;
}

.service-cta .contact-email:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 46, 99, 0.4);
}

/* === Calculator === */

.calc-toggle {
  color: var(--text);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255, 107, 53, 0.4);
  transition: color .2s, text-decoration-color .2s;
}

.calc-toggle:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.calc-section {
  padding-top: 0;
}

.calc-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}

.calc-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.calc-block-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-radio,
.calc-checkbox {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 0 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}

.calc-radio:hover,
.calc-checkbox:hover {
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.05);
}

.calc-radio input,
.calc-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-radio-custom,
.calc-check-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  margin-top: 2px;
  transition: border-color .2s;
  position: relative;
  justify-self: start;
}

.calc-check-custom {
  border-radius: 4px;
}

.calc-radio input:checked ~ .calc-radio-custom,
.calc-checkbox input:checked ~ .calc-check-custom {
  border-color: var(--orange);
}

.calc-radio input:checked ~ .calc-radio-custom::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.calc-checkbox input:checked ~ .calc-check-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--orange);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.calc-radio input:checked ~ .calc-label,
.calc-checkbox input:checked ~ .calc-label {
  color: #fff;
}

.calc-label {
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
  align-self: start;
  margin-top: 1px;
}

.calc-price {
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  font-size: 14px;
  align-self: start;
  margin-top: 1px;
}

.calc-market {
  grid-column: 2 / -1;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 4px;
}

.calc-extra-pages-input {
  padding: 0 16px 8px 32px;
}

.calc-extra-pages-input label {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-extra-pages-input input {
  width: 60px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  text-align: center;
}

.calc-extra-pages-input input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.calc-messenger-details {
  padding: 0 16px 8px 32px;
}

.calc-form-details {
  padding: 0 16px 8px 32px;
}

.calc-seo-max-details {
  padding: 0 16px 8px 32px;
}

.calc-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.5;
}

.calc-note strong {
  color: var(--text);
}

.calc-included {
  opacity: 0.6;
  pointer-events: none;
}

.calc-included .calc-label {
  text-decoration: line-through;
  color: var(--text-muted);
}

.calc-included .calc-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
}

.calc-included .calc-market {
  display: none;
}

.calc-included-note {
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 4px;
  line-height: 1.5;
  padding-left: 16px;
}

.calc-expenses {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-expense-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.calc-expense-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  align-self: start;
}

.calc-expense-price {
  font-weight: 700;
  color: var(--yellow);
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
  align-self: start;
}

.calc-expense-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.calc-expense-service {
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.05);
  grid-template-columns: 20px 1fr auto;
}

.calc-expense-service .calc-check-custom {
  grid-row: 1;
  margin-top: 2px;
}

.calc-expense-service .calc-expense-label {
  grid-column: 2;
}

.calc-expense-service .calc-expense-price {
  grid-column: 3;
  text-align: right;
}

.calc-expense-service .calc-expense-note {
  grid-column: 2 / -1;
}

.calc-unavailable-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-unavailable-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 10px;
}

.calc-lock {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.calc-result {
  background: var(--card-bg);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}

.calc-result-breakdown {
  margin-bottom: 16px;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-result-row:last-child {
  border-bottom: none;
}

.calc-result-row span:first-child {
  color: var(--text-muted);
}

.calc-result-row span:last-child {
  font-weight: 600;
  color: var(--text);
}

.calc-result-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  font-size: 20px;
  font-weight: 800;
}

.calc-result-total span:last-child {
  color: var(--yellow);
}

.calc-result-savings {
  text-align: right;
  font-size: 13px;
  color: var(--cyan);
  margin-top: 4px;
}

.calc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-modal-content {
  background: rgba(26, 26, 46, 0.97);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.calc-modal-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.calc-modal-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.calc-modal-close {
  margin-top: 16px;
  padding: 12px 32px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s;
}

.calc-modal-close:hover {
  opacity: .9;
}

@media (max-width: 768px) {
  .service-hero {
    padding: 120px 0 40px;
  }

  .service-section {
    padding: 48px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .calc-block {
    padding: 20px 16px;
  }

  .calc-radio,
  .calc-checkbox {
    grid-template-columns: 20px 1fr;
    padding: 12px;
  }

  .calc-price {
    grid-column: 2 / -1;
    margin-top: 4px;
  }

  .calc-result {
    padding: 20px 16px;
  }

  .calc-result-total {
    font-size: 18px;
  }
}
