:root {
  --p6k-dark: #0b1220;
  --p6k-slate: #101828;
  --p6k-blue: #2563eb;
  --p6k-cyan: #38bdf8;
  --p6k-orange: #e4763b;
  --p6k-surface: #f8fafc;
  --p6k-border: #e2e8f0;
  --p6k-muted: #64748b;
}

body.font-4 {
  color: var(--p6k-slate);
}

.header-default {
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.header-default .wrapper-header {
  min-height: 82px;
}

.logo-header img,
.footer-logo img {
  max-height: 58px;
  object-fit: contain;
}

.box-nav-menu .item-link {
  letter-spacing: 0.08em;
}

.box-nav-menu .p6k-has-submenu > .item-link::before {
  background: var(--p6k-orange);
  border-radius: 999px;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: scaleX(0.55);
  transform-origin: center;
  width: 100%;
}

.box-nav-menu .p6k-has-submenu:hover > .item-link::before {
  opacity: 1;
  transform: scaleX(1);
}

.box-nav-menu .p6k-nav-submenu {
  min-width: 220px;
  padding: 22px 26px;
}

.box-nav-menu .p6k-nav-submenu .menu-list li:not(:last-child) {
  margin-bottom: 12px;
}

.box-nav-menu .p6k-nav-submenu .menu-link-text {
  color: var(--p6k-slate);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.box-nav-menu .p6k-nav-submenu .menu-link-text:hover {
  color: var(--p6k-orange);
}

.p6k-section {
  padding: 96px 0;
}

.p6k-eyebrow {
  color: var(--p6k-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.p6k-section h2,
.p6k-hero h1 {
  letter-spacing: -0.05em;
}

.p6k-section h2 {
  color: var(--p6k-slate);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 0.98;
  margin-bottom: 22px;
}

.p6k-lead,
.p6k-section p {
  color: var(--p6k-muted);
  font-size: 17px;
  line-height: 1.7;
}

.p6k-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 50px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.p6k-btn:hover {
  transform: translateY(-2px);
}

.p6k-btn-primary {
  background: linear-gradient(135deg, var(--p6k-orange), #f59e0b);
  box-shadow: 0 18px 42px rgba(228, 118, 59, 0.28);
  color: #fff;
}

.p6k-btn-primary:hover {
  color: #fff;
}

.p6k-btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.42);
  color: #e2e8f0;
}

.p6k-btn-secondary:hover {
  border-color: rgba(56, 189, 248, 0.8);
  color: #fff;
}

.p6k-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.32), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(228, 118, 59, 0.22), transparent 28%),
    linear-gradient(rgba(11, 18, 32, 0.92), rgba(11, 18, 32, 0.94)),
    url("../background.png") center / cover;
  color: #fff;
  overflow: hidden;
  padding: 136px 0 52px;
  position: relative;
}

.p6k-hero::before {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.55;
  position: absolute;
}

.p6k-hero .container {
  position: relative;
  z-index: 1;
}

.p6k-hero h1 {
  color: #fff;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 28px;
  max-width: 900px;
}

.p6k-hero-copy {
  color: #cbd5e1;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 720px;
}

.p6k-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.p6k-hero-panel {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.p6k-panel-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 74px 1fr;
  padding: 16px;
}

.p6k-panel-row span,
.p6k-panel-row strong {
  color: #e2e8f0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p6k-panel-row strong {
  color: #fff;
  text-align: right;
}

.p6k-panel-row i {
  background: linear-gradient(90deg, var(--p6k-cyan), var(--p6k-orange));
  border-radius: 999px;
  height: 2px;
  position: relative;
}

.p6k-panel-row i::after {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.8);
  content: "";
  height: 8px;
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
}

.p6k-cred-strip {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 84px;
  padding-top: 26px;
}

.p6k-cred-strip span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
}

.p6k-about-card {
  background: #fff;
  border: 1px solid var(--p6k-border);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.p6k-about-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.p6k-about-points {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.p6k-about-points div {
  border-left: 3px solid var(--p6k-blue);
  padding-left: 16px;
}

.p6k-about-points strong,
.p6k-about-points span {
  display: block;
}

.p6k-about-points strong {
  color: var(--p6k-slate);
  font-size: 17px;
  margin-bottom: 4px;
}

.p6k-about-points span {
  color: var(--p6k-muted);
  line-height: 1.5;
}

.p6k-proof,
.p6k-process {
  background: var(--p6k-surface);
}

.p6k-section-heading {
  margin-bottom: 42px;
  max-width: 820px;
}

.p6k-section-heading-wide {
  max-width: 960px;
}

.p6k-result-card,
.p6k-quote-card,
.p6k-service-card,
.p6k-process-grid > div,
.p6k-team-card {
  border: 1px solid var(--p6k-border);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.p6k-result-card {
  background: #fff;
  display: grid;
  gap: 18px;
  height: 100%;
  padding: 34px;
}

.p6k-result-card span {
  color: var(--p6k-blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.p6k-result-card p,
.p6k-quote-card p {
  margin-bottom: 0;
}

.p6k-quote-card {
  background: var(--p6k-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 34px;
}

.p6k-quote-card img {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 32px;
  max-width: 160px;
  padding: 12px;
}

.p6k-quote-card p {
  color: #e2e8f0;
  font-size: 19px;
  line-height: 1.65;
}

.p6k-quote-card cite {
  color: #93c5fd;
  font-style: normal;
  font-weight: 800;
  margin-top: 28px;
}

.p6k-services {
  background: #fff;
}

.p6k-service-group {
  border-top: 1px solid var(--p6k-border);
  display: grid;
  gap: 28px;
  grid-template-columns: 0.9fr 2fr;
  padding: 42px 0;
}

.p6k-service-intro span,
.p6k-process-grid span {
  color: var(--p6k-orange);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.p6k-service-intro h3 {
  color: var(--p6k-slate);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.p6k-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p6k-service-card {
  background: linear-gradient(180deg, #fff, #f8fafc);
  min-height: 250px;
  padding: 26px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.p6k-service-card::before {
  background: linear-gradient(90deg, var(--p6k-blue), var(--p6k-orange));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 26px;
  position: absolute;
  right: 26px;
  top: 0;
}

.p6k-service-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.p6k-service-card i {
  align-items: center;
  background: #eff6ff;
  border-radius: 16px;
  color: var(--p6k-blue);
  display: inline-flex;
  font-size: 28px;
  height: 56px;
  justify-content: center;
  margin-bottom: 24px;
  width: 56px;
}

.p6k-service-card h4,
.p6k-process-grid h4 {
  color: var(--p6k-slate);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.p6k-service-card p,
.p6k-process-grid p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}

.p6k-process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.p6k-process-grid > div {
  background: #fff;
  padding: 26px;
}

.p6k-team {
  background: var(--p6k-dark);
}

.p6k-team h2 {
  color: #fff;
}

.p6k-team-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.18);
  display: grid;
  gap: 20px;
  grid-template-columns: 96px 1fr auto;
  padding: 24px;
}

.p6k-team-card img {
  border-radius: 50%;
  height: 96px;
  object-fit: cover;
  width: 96px;
}

.p6k-team-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 4px;
}

.p6k-team-card p {
  color: #cbd5e1;
  margin-bottom: 12px;
}

.p6k-team-card span {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  color: #bfdbfe;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  margin: 0 6px 6px 0;
  padding: 6px 10px;
}

.p6k-team-card a {
  color: #93c5fd;
  font-weight: 800;
}

.p6k-contact {
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(239, 246, 255, 0.96)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
  background-size: auto, 42px 42px;
}

.p6k-contact .content-left,
.p6k-contact .content-right {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--p6k-border);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  height: 100%;
  padding: 34px;
}

.p6k-contact .content-left {
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.18), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(228, 118, 59, 0.18), transparent 30%),
    linear-gradient(145deg, #0b1220, #111827);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.p6k-contact .content-left::before {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  opacity: 0.45;
  position: absolute;
}

.p6k-contact-card > * {
  position: relative;
  z-index: 1;
}

.p6k-contact-card .title {
  color: #fff;
}

.p6k-contact-card .sub-title {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.p6k-contact-actions {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.p6k-contact-action {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  display: block;
  padding: 18px 20px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.p6k-contact-action:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.52);
  transform: translateY(-2px);
}

.p6k-contact-action span,
.p6k-contact-action strong {
  display: block;
}

.p6k-contact-action span {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p6k-contact-action strong {
  color: #93c5fd;
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
}

.p6k-contact-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p6k-contact-fit span {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.p6k-contact .content-right {
  padding: 40px;
}

.p6k-contact .title {
  color: var(--p6k-slate);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.p6k-contact .p6k-contact-card .title {
  color: #fff;
}

.p6k-contact input,
.p6k-contact textarea {
  border-color: var(--p6k-border) !important;
}

.p6k-contact .tf-btn {
  background: var(--p6k-slate) !important;
  color: #fff !important;
}

.footer-default {
  border-top: 1px solid var(--p6k-border);
}

.p6k-macos-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(124, 58, 237, 0.34), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(37, 99, 235, 0.24), transparent 30%),
    linear-gradient(rgba(11, 18, 32, 0.94), rgba(11, 18, 32, 0.96)),
    url("../background.png") center / cover;
}

.p6k-macos-ad-card {
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(167, 139, 250, 0.34);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36), 0 0 60px rgba(124, 58, 237, 0.18);
  overflow: hidden;
  padding: 10px;
}

.p6k-macos-ad-card img {
  border-radius: 22px;
  display: block;
  width: 100%;
}

.p6k-macos-hero-art img {
  display: block;
  width: 100%;
}

.p6k-macos-details {
  background: #fff;
}

.p6k-macos-use-cases {
  background: var(--p6k-surface);
}

.p6k-macos-use-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p6k-macos-use-grid > div {
  background: #fff;
  border: 1px solid var(--p6k-border);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  padding: 26px;
}

.p6k-macos-use-grid span {
  color: var(--p6k-blue);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.p6k-macos-use-grid h4 {
  color: var(--p6k-slate);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.p6k-macos-use-grid p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}

.p6k-macos-cta {
  background: var(--p6k-dark);
}

.p6k-macos-cta-card {
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(56, 189, 248, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 30px;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  padding: 42px;
}

.p6k-macos-cta-card h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 18px;
}

.p6k-macos-cta-card p:not(.p6k-eyebrow) {
  color: #cbd5e1;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .p6k-service-group {
    grid-template-columns: 1fr;
  }

  .p6k-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p6k-macos-cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .p6k-section {
    padding: 68px 0;
  }

  .p6k-hero {
    padding: 96px 0 42px;
  }

  .p6k-hero-actions,
  .p6k-cred-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .p6k-btn,
  .p6k-cred-strip span {
    width: 100%;
  }

  .p6k-panel-row {
    grid-template-columns: 1fr;
  }

  .p6k-panel-row strong {
    text-align: left;
  }

  .p6k-card-grid,
  .p6k-process-grid,
  .p6k-macos-use-grid {
    grid-template-columns: 1fr;
  }

  .p6k-macos-cta-card {
    padding: 28px;
  }

  .p6k-team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .p6k-team-card img {
    margin: 0 auto;
  }

  .p6k-contact .content-left,
  .p6k-contact .content-right {
    padding: 26px;
  }

  .p6k-contact-fit {
    flex-direction: column;
  }

  .p6k-contact-fit span {
    text-align: center;
  }
}
