/* iCall DigiMarket — Inner pages shared styles */

.inner-page {
  background-color: #fff;
  color: #191919;
}

/* Solid navbar for inner pages (transparent only on home hero) */
.navbar-solid {
  position: relative !important;
  background-color: #151515;
  padding: 16px 3vw;
}

.inner-header {
  background: linear-gradient(180deg, #151515 0%, #1a1a1a 100%);
  color: #fff;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.inner-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 136, 81, 0.18), transparent 60%);
  pointer-events: none;
}
.inner-header .container {
  position: relative;
  z-index: 2;
}
.inner-header .eyebrow {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cr-orange1);
  margin: 0 0 24px;
}
.inner-header .page-title {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: -0.5px;
  max-width: 880px;
  margin: 0 0 24px;
}
.inner-header .page-title .accent {
  color: var(--cr-orange1);
}
.inner-header .page-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: #b7b7b7;
  max-width: 720px;
  margin: 0;
}
.inner-header .kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.inner-header .kpi {
  display: flex;
  flex-direction: column;
}
.inner-header .kpi strong {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.inner-header .kpi span {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
  font-weight: 600;
}

/* Sections */
.inner-section {
  padding: 110px 0;
}
.inner-section .eyebrow {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cr-orange1);
  margin: 0 0 20px;
}
.inner-section .section-title {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin: 0 0 24px;
  color: #151515;
}
.inner-section .section-text {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  font-weight: 500;
  margin: 0 0 18px;
}
.inner-section-dark {
  background-color: #151515;
  color: #fff;
}
.inner-section-dark .section-title { color: #fff; }
.inner-section-dark .section-text { color: #c8c8c8; }
.inner-section-light {
  background-color: #f6f6f6;
}

.inner-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(21, 21, 21, 0.25);
}
.inner-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.value-card:hover {
  border-color: var(--cr-orange1);
  transform: translateY(-3px);
}
.value-card .value-num {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--cr-orange1);
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}
.value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #b7b7b7;
  margin: 0;
}

/* Method steps */
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.method-step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background-color: #fff;
}
.method-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--cr-orange1);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}
.method-step h3 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #151515;
}
.method-step p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Poles cards */
.poles-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #ebebeb;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.poles-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(21, 21, 21, 0.15);
}
.poles-card .pole-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 136, 81, 0.12);
  color: var(--cr-orange1);
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 16px;
}
.poles-card h3 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #151515;
}
.poles-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Company facts list */
.company-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e5e5e5;
}
.company-facts li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
}
.company-facts .fact-label {
  color: #777;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 180px;
}
.company-facts .fact-value {
  color: #151515;
  font-weight: 700;
  text-align: right;
}

/* CTA bottom */
.inner-cta {
  background-color: var(--cr-orange1);
  color: #151515;
  padding: 90px 0;
  text-align: center;
}
.inner-cta h2 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  margin: 0 0 14px;
}
.inner-cta p {
  font-size: 18px;
  margin: 0 0 32px;
  font-weight: 500;
}
.inner-cta .hero-cta-primary {
  background-color: #151515;
  color: #fff !important;
  border-color: #151515;
}
.inner-cta .hero-cta-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: #151515 !important;
}

/* Contact page specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 18px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background-color: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.contact-card:hover {
  border-color: var(--cr-orange1);
  transform: translateY(-2px);
}
.contact-card .ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: rgba(255, 136, 81, 0.12);
  color: var(--cr-orange1);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-card .lbl {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
  display: block;
  margin-bottom: 4px;
}
.contact-card .val {
  font-size: 17px;
  font-weight: 700;
  color: #151515;
}

.contact-form {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px;
}
.contact-form h2 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 28px;
  font-weight: 850;
  margin: 0 0 24px;
}
.contact-form .form-row {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
}
.contact-form .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--cr-orange1);
  box-shadow: 0 0 0 4px rgba(255, 136, 81, 0.12);
}
.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-form .form-row.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form .form-row.row-2 > div {
  margin: 0;
}
.contact-form .submit-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background-color: var(--cr-orange1);
  color: #151515;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(255, 136, 81, 0.55);
}
.contact-form .submit-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}
.contact-form .form-feedback {
  font-size: 14px;
  margin-top: 16px;
  min-height: 20px;
  font-weight: 600;
  color: transparent;
  transition: color 0.2s ease;
}
.contact-form.is-error .form-feedback { color: #c5392b; }
.contact-form.is-success .form-feedback { color: #1e8a4d; }

/* Legal pages */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content section {
  margin-bottom: 40px;
}
.legal-content h2 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 22px;
  font-weight: 850;
  color: #151515;
  margin: 0 0 14px;
  letter-spacing: -0.2px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}
.legal-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content strong {
  color: #151515;
  font-weight: 700;
}
.legal-toc {
  background-color: #fafafa;
  border-left: 3px solid var(--cr-orange1);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
}
.legal-toc h3 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #777;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
}
.legal-toc li {
  font-size: 14px;
  line-height: 1.7;
}
.legal-toc a {
  color: #151515;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.legal-toc a:hover {
  border-bottom-color: var(--cr-orange1);
  color: var(--cr-orange1);
}

/* Footer tagline */
.tc-footer-st2 .footer-tagline {
  color: #aaa;
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}

/* Responsive */
@media (max-width: 991px) {
  .inner-header { padding: 130px 0 60px; }
  .inner-section { padding: 70px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .contact-form .form-row.row-2 { grid-template-columns: 1fr; }
  .inner-header .kpi-row { gap: 28px; }
  .inner-header .kpi strong { font-size: 28px; }
  .company-facts li { flex-direction: column; gap: 4px; }
  .company-facts .fact-value { text-align: left; }
  .legal-content { padding: 0 12px; }
}
