/* /css/b2bService.css */

:root {
  --b2b-surface: rgba(255, 255, 255, 0.045);
  --b2b-surface-strong: rgba(255, 255, 255, 0.07);
  --b2b-border: rgba(255, 255, 255, 0.10);
  --b2b-text-soft: rgba(232, 234, 240, 0.84);
  --b2b-text-muted: rgba(232, 234, 240, 0.68);
  --b2b-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  --b2b-shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.18);
}

body.b2b-page {
  background:
    radial-gradient(circle at 15% 10%, rgba(30, 144, 255, 0.16), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(255, 99, 71, 0.12), transparent 22%),
    radial-gradient(circle at 60% 70%, rgba(0, 212, 255, 0.08), transparent 28%),
    #121212;
  overflow-x: hidden;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body.b2b-page::before,
body.b2b-page::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.28;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}

body.b2b-page::before {
  top: 10%;
  left: -60px;
  background: rgba(30, 144, 255, 0.35);
}

.b2b-legal-note {
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}

body.b2b-page::after {
  right: -70px;
  bottom: 10%;
  background: rgba(255, 99, 71, 0.22);
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-14px) translateX(10px); }
}

body.b2b-page main section {
  min-height: auto;
  display: block;
  text-align: left;
  padding: 90px 0 34px;
  position: relative;
  z-index: 1;
}

.b2b-main {
  padding-bottom: 42px;
}

.b2b-hero-section {
  padding-top: 132px !important;
}

.b2b-hero-grid,
.b2b-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.b2b-hero-copy,
.b2b-highlight-card,
.process-card,
.offer-card,
.request-summary,
.b2b-cta-box,
.faq-item,
.email-reveal-card--b2b {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--b2b-border);
  background: var(--b2b-surface);
  box-shadow: var(--b2b-shadow-soft);
  backdrop-filter: blur(10px);
}

.b2b-hero-copy::before,
.b2b-highlight-card::before,
.process-card::before,
.offer-card::before,
.request-summary::before,
.b2b-cta-box::before,
.email-reveal-card--b2b::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  opacity: 0.65;
  pointer-events: none;
}

.b2b-hero-copy,
.b2b-highlight-card,
.request-summary,
.b2b-cta-box {
  padding: 30px;
}

.b2b-badge,
.offer-badge,
.highlight-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(30, 144, 255, 0.14);
  border: 1px solid rgba(30, 144, 255, 0.24);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.offer-badge.is-accent {
  background: rgba(255, 99, 71, 0.14);
  border-color: rgba(255, 99, 71, 0.24);
}

.b2b-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06;
  margin: 18px 0 18px;
  color: #ffffff;
  max-width: 16ch;
}

.b2b-hero-copy p,
.b2b-highlight-card p,
.request-copy p,
.faq-answer p,
.b2b-cta-box p,
.section-head p,
.offer-note,
.process-card p,
.email-reveal-content p {
  color: var(--b2b-text-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}

.b2b-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.b2b-mini-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-weight: 700;
  min-height: 72px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.mini-point:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 144, 255, 0.22);
  background: rgba(255,255,255,0.06);
}

.mini-point i {
  color: var(--primary-color);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.highlight-top {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.b2b-highlight-card h2,
.section-head h2,
.request-copy h2,
.b2b-cta-box h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  line-height: 1.15;
  margin: 0;
}

.b2b-highlight-card {
  animation: floatSoft 7s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.section-head {
  margin-bottom: 24px;
}

.b2b-checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.b2b-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.b2b-checklist i {
  color: var(--primary-color);
  margin-top: 4px;
}

.b2b-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.b2b-process-track::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 84px;
  height: 2px;
  background: linear-gradient(90deg, rgba(30,144,255,0.0), rgba(30,144,255,0.28), rgba(255,99,71,0.28), rgba(255,99,71,0.0));
  z-index: 0;
}

.process-card {
  padding: 26px 20px 22px;
  z-index: 1;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 144, 255, 0.22);
  box-shadow: var(--b2b-shadow);
}

.process-number {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--b2b-text-muted);
  letter-spacing: 0.12em;
}

.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 144, 255, 0.14);
  border: 1px solid rgba(30, 144, 255, 0.22);
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(30, 144, 255, 0.12);
}

.process-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.b2b-tabs {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.b2b-tab {
  border: 1px solid transparent;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.b2b-tab:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.04);
}

.b2b-tab.is-active {
  background: linear-gradient(135deg, rgba(30,144,255,0.18), rgba(255,99,71,0.12));
  border-color: rgba(255,255,255,0.10);
}

.b2b-tab-panels {
  display: grid;
}

.b2b-tab-panel {
  animation: fadeUpPanel 0.28s ease;
}

@keyframes fadeUpPanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.b2b-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  padding: 24px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.22);
  box-shadow: var(--b2b-shadow);
}

.offer-card.is-selected {
  border-color: rgba(30, 144, 255, 0.55);
  box-shadow: 0 16px 50px rgba(30, 144, 255, 0.14);
}

.offer-card-head {
  margin-bottom: 18px;
}

.offer-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 14px 0 10px;
}

.offer-price,
.summary-price {
  font-size: 1.58rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.offer-features li {
  position: relative;
  padding-left: 24px;
  color: rgba(232, 234, 240, 0.88);
  line-height: 1.6;
}

.offer-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.35);
}

.offer-select[aria-pressed="true"] {
  background-color: var(--accent-color);
}

.b2b-request-grid {
  align-items: start;
}

.request-copy {
  padding: 10px 0;
}

.request-summary {
  position: sticky;
  top: 106px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-label {
  margin: 0;
  color: var(--b2b-text-muted);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#selectedOfferTitle {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.1;
}

.summary-note {
  margin: 0 0 8px;
  color: var(--b2b-text-soft);
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 6px;
}

.faq-item {
  border-radius: 20px;
  margin: 0;
}

.faq-answer p {
  margin: 0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 22px 24px;
  font-size: 1.04rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.18s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.b2b-cta-box {
  text-align: center;
  box-shadow: var(--b2b-shadow);
}

.b2b-cta-box p {
  max-width: 760px;
  margin: 16px auto 0;
}

.b2b-cta-box .b2b-actions {
  justify-content: center;
}

/* Email reveal */
.email-reveal-card {
  width: 100%;
}

.email-reveal-card summary {
  list-style: none;
}

.email-reveal-card summary::-webkit-details-marker {
  display: none;
}

.email-reveal-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.08rem;
  user-select: none;
  transition: background-color 0.18s ease;
}

.email-reveal-trigger:hover {
  background: rgba(255,255,255,0.03);
}

.email-reveal-trigger i {
  color: var(--primary-color);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.email-reveal-card[open] .email-reveal-trigger i {
  transform: rotate(180deg);
}

.email-reveal-content {
  padding: 0 22px 22px;
  animation: fadeInMail 0.22s ease;
}

@keyframes fadeInMail {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.email-selected-offer {
  margin: 6px 0 14px;
  color: #ffffff;
}

.email-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(30,144,255,0.10);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.12rem;
  word-break: break-word;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.email-inline-link:hover {
  transform: translateY(-2px);
  background: rgba(30,144,255,0.15);
  border-color: rgba(30,144,255,0.24);
}

.email-reveal-note-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(232, 234, 240, 0.88);
}

.email-reveal-note-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .b2b-hero-grid,
  .b2b-request-grid {
    grid-template-columns: 1fr;
  }

  .request-summary {
    position: static;
  }

  .b2b-mini-points {
    grid-template-columns: 1fr 1fr;
  }

  .b2b-process-track {
    grid-template-columns: 1fr 1fr;
  }

  .b2b-process-track::before {
    display: none;
  }

  .b2b-offers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body.b2b-page main section {
    padding: 76px 0 24px;
  }

  .b2b-hero-section {
    padding-top: 116px !important;
  }

  .b2b-hero-copy,
  .b2b-highlight-card,
  .request-summary,
  .b2b-cta-box,
  .offer-card,
  .process-card {
    padding: 22px;
    border-radius: 22px;
  }

  .b2b-actions {
    gap: 12px;
  }

  .b2b-actions .btn,
  .offer-select,
  .request-summary .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .b2b-mini-points,
  .b2b-process-track,
  .b2b-offers-grid {
    grid-template-columns: 1fr;
  }

  .b2b-tabs {
    display: grid;
    width: 100%;
  }

  .b2b-tab {
    justify-content: center;
    width: 100%;
  }

  .offer-title {
    font-size: 1.35rem;
  }

  #selectedOfferTitle {
    font-size: 1.7rem;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .email-reveal-trigger {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .email-reveal-content {
    padding: 0 18px 18px;
  }

  .email-inline-link {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .b2b-hero-copy h1 {
    font-size: 2rem;
  }

  .b2b-highlight-card h2,
  .section-head h2,
  .request-copy h2,
  .b2b-cta-box h2 {
    font-size: 1.65rem;
  }

  .offer-price,
  .summary-price {
    font-size: 1.4rem;
  }

  .mini-point {
    min-height: 64px;
    padding: 12px 14px;
  }
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.contact-side-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--b2b-border);
  background: var(--b2b-surface);
  box-shadow: var(--b2b-shadow-soft);
  backdrop-filter: blur(10px);
  padding: 26px;
}

.contact-side-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.contact-side-card p {
  color: var(--b2b-text-soft);
  line-height: 1.7;
}

.contact-channel-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.30);
  background: rgba(255,255,255,0.06);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.24);
  flex-shrink: 0;
  font-size: 1.15rem;
}

.contact-channel-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-channel-text strong {
  color: #ffffff;
  font-size: 1rem;
}

.contact-channel-text span {
  color: var(--b2b-text-soft);
  line-height: 1.45;
  word-break: break-word;
}

.contact-side-note {
  margin-top: 18px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 980px) {
  .contact-direct-grid {
    grid-template-columns: 1fr;
  }
}