/*
  Page-specific styles for /creative-hub/. Shared chrome lives in
  main.css. The ".pricing"/".price-*" and ".pkg-price-block"/".pkg-price"
  rules that existed in the original inline stylesheet styled sections
  that were removed from this page's markup (see git history: "Remove
  all pricing from the website") — genuinely dead CSS, dropped rather
  than migrated, per the "no dead code / no unused selectors" rule.
*/

/* HERO (same dark-hero-with-image pattern as community-media-hub) */

.hero {

  position: relative;

  min-height: 72vh;

  display: flex;

  align-items: flex-end;

  overflow: hidden;

  padding-top: 76px;

  background: var(--black);
}

.hero-media {

  position: absolute;

  inset: 0;
}

.hero-media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 30%;
}

.hero-over {

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, #000000d1 0%, #0000004c 55%, #0000001a 100%);
}

.hero-content {

  position: relative;

  z-index: 2;

  max-width: var(--max);

  margin: 0 auto;

  padding: 80px 56px 72px;

  width: 100%;
}

.hero-eyebrow {

  color: #fff9;

  margin-bottom: 20px;

  opacity: 0;

  animation: hf 0.7s var(--ease) 0.4s forwards;
}

.hero-h1 {

  font-family: var(--fh);

  font-size: clamp(40px, 6.5vw, 88px);

  font-weight: 900;

  color: var(--white);

  line-height: 1.06;

  letter-spacing: -0.5px;

  margin-bottom: 24px;

  opacity: 0;

  animation: hf 0.9s var(--ease) 0.6s forwards;
}

.hero-h1 .ac {

  color: var(--orange);

  display: block;
}

.hero-sub {

  font-size: 16px;

  color: #ffffffa6;

  line-height: 1.75;

  max-width: 560px;

  margin-bottom: 36px;

  opacity: 0;

  animation: hf 0.8s var(--ease) 0.85s forwards;
}

.hero-ctas {

  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  opacity: 0;

  animation: hf 0.8s var(--ease) 1.05s forwards;
}

@keyframes hf {

  from {

    opacity: 0;

    transform: translateY(22px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}

/* TICKER */

.ticker-bar {

  background: var(--orange);

  overflow: hidden;

  white-space: nowrap;
}

.ticker-inner {

  display: inline-flex;

  animation: ticker 28s linear infinite;
}

.ticker-inner:hover {

  animation-play-state: paused;
}

.ticker-item {

  display: inline-flex;

  align-items: center;

  padding: 18px 0;
}

.ticker-text {

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  color: var(--white);

  padding: 0 32px;

  letter-spacing: 0.3px;
}

.ticker-dot {

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: #ffffff80;

  flex-shrink: 0;
}

@keyframes ticker {

  from {

    transform: translateX(0);
  }

  to {

    transform: translateX(-50%);
  }
}

/* INTRO */

.ch-intro {

  background: var(--page);

  padding: 88px 0;
}

.ch-inner {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: start;
}

.ch-title {

  font-family: var(--fh);

  font-size: clamp(30px, 4vw, 50px);

  font-weight: 900;

  color: var(--black);

  line-height: 1.1;

  letter-spacing: -0.5px;

  margin-bottom: 20px;
}

.ch-title span {

  color: var(--orange);
}

.ch-body {

  font-size: 15px;

  color: var(--mid);

  line-height: 1.85;

  margin-bottom: 24px;
}

.ch-bullets {

  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-bottom: 32px;
}

.ch-bullets li {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  font-size: 14px;

  color: var(--mid);

  line-height: 1.6;
}

.ch-bullets li::before {

  content: '→';

  color: var(--orange);

  font-family: var(--fh);

  font-weight: 700;

  flex-shrink: 0;
}

.ch-vision {

  background: var(--orange-pale);

  border-left: 3px solid var(--orange);

  padding: 24px 28px;

  margin-bottom: 14px;
}

.ch-vision-label {

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--orange);

  margin-bottom: 10px;
}

.ch-vision-text {

  font-family: var(--fh);

  font-size: 14px;

  font-weight: 600;

  color: var(--black);

  line-height: 1.65;

  font-style: italic;
}

.ch-tags {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 2px;

  background: var(--border);
}

.ch-tag {

  background: var(--white);

  padding: 18px 20px;
}

.ch-tag-title {

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 700;

  color: var(--orange);

  letter-spacing: 1px;

  margin-bottom: 4px;
}

.ch-tag-body {

  font-size: 12px;

  color: var(--mid);

  line-height: 1.6;
}

/* SERVICES GRID */

.services {

  background: var(--surface);

  padding: 88px 0;
}

.services-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2px;

  background: var(--border);
}

.service-card {

  background: var(--white);

  padding: 36px 32px;

  transition: background 0.3s;

  position: relative;

  overflow: hidden;
}

.service-card:hover {

  background: var(--surface);
}

.service-card::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 2px;

  background: var(--orange);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s var(--ease);
}

.service-card:hover::before {

  transform: scaleX(1);
}

.service-ic {

  width: 48px;

  height: 48px;

  background: var(--orange-pale);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 18px;

  transition: background 0.3s;
}

.service-card:hover .service-ic {

  background: #ff7a0026;
}

.service-ic svg {

  width: 22px;

  height: 22px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 1.8;
}

.service-title {

  font-family: var(--fh);

  font-size: 15px;

  font-weight: 800;

  color: var(--black);

  margin-bottom: 8px;
}

.service-body {

  font-size: 13px;

  color: var(--mid);

  line-height: 1.75;
}

/* WEBSITE PACKAGES */

.web-packages {

  background: var(--page);

  padding: 88px 0;

  border-top: 1px solid var(--border);
}

.web-packages .section-intro {

  max-width: 620px;
}

.pkg-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2px;
}

.pkg-card {

  background: var(--white);

  display: flex;

  flex-direction: column;

  position: relative;

  overflow: hidden;

  transition: transform 0.4s var(--ease), box-shadow 0.4s;

  border: 1px solid var(--border);
}

.pkg-card::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: var(--orange);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s var(--ease);
}

.pkg-card:hover {

  transform: translateY(-7px);

  box-shadow: 0 24px 56px #00000021;

  z-index: 2;
}

.pkg-card:hover::after {

  transform: scaleX(1);
}

.pkg-card.featured {

  background: var(--black);
}

.pkg-card.featured::after {

  transform: scaleX(1);
}

.pkg-head {

  padding: 40px 36px 28px;

  border-bottom: 1px solid #00000012;
}

.pkg-card.featured .pkg-head {

  border-bottom-color: #ffffff12;
}

.pkg-tier-label {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--orange);

  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 16px;
}

.pkg-tier-dot {

  width: 6px;

  height: 6px;

  background: var(--orange);

  border-radius: 50%;

  flex-shrink: 0;
}

.pkg-name {

  font-family: var(--fh);

  font-size: clamp(20px, 2vw, 26px);

  font-weight: 900;

  color: var(--black);

  line-height: 1.15;

  margin-bottom: 12px;
}

.pkg-card.featured .pkg-name {

  color: var(--white);
}

.pkg-ideal {

  font-size: 14px;

  color: var(--mid);

  line-height: 1.65;
}

.pkg-card.featured .pkg-ideal {

  color: #ffffff76;
}

.pkg-body {

  padding: 28px 36px;

  flex: 1;
}

.pkg-deliverables {

  display: flex;

  flex-direction: column;

  gap: 12px;
}

.pkg-deliverable {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  font-size: 14px;

  color: #2a2a2a;

  line-height: 1.55;
}

.pkg-card.featured .pkg-deliverable {

  color: #ffffffb3;
}

.pkg-check {

  width: 20px;

  height: 20px;

  background: #ff7a001f;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  margin-top: 1px;
}

.pkg-check svg {

  width: 10px;

  height: 10px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 3;
}

.pkg-footer {

  padding: 24px 36px 36px;
}

.pkg-cta {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  width: 100%;

  padding: 15px 24px;

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  background: #ff7a001a;

  color: var(--orange);

  transition: all 0.3s var(--ease);

  border: 1px solid #ff7a0033;
}

.pkg-cta:hover {

  background: var(--orange);

  color: var(--white);

  transform: translateY(-2px);
}

.pkg-cta svg {

  width: 13px;

  height: 13px;

  stroke: currentColor;

  fill: none;

  stroke-width: 2.5;

  transition: transform 0.3s;
}

.pkg-cta:hover svg {

  transform: translateX(4px);
}

.pkg-card.featured .pkg-cta {

  background: var(--orange);

  color: var(--white);

  border-color: var(--orange);
}

.pkg-card.featured .pkg-cta:hover {

  background: var(--orange-dk);
}

.pkg-badge {

  position: absolute;

  top: 24px;

  right: 24px;

  background: var(--orange);

  color: var(--white);

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 800;

  padding: 5px 12px;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

/* NOT SURE CTA */

.pkg-unsure {

  display: flex;

  align-items: center;

  gap: 20px;

  background: var(--orange-pale);

  border: 1px solid #ff7a0029;

  padding: 22px 28px;

  margin-top: 28px;

  flex-wrap: wrap;
}

.pkg-unsure-icon {

  width: 44px;

  height: 44px;

  background: var(--orange);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--fh);

  font-size: 20px;

  font-weight: 900;

  color: var(--white);

  flex-shrink: 0;
}

.pkg-unsure-text {

  flex: 1;

  min-width: 200px;
}

.pkg-unsure-text strong {

  font-family: var(--fh);

  font-size: 15px;

  font-weight: 800;

  color: var(--black);

  display: block;

  margin-bottom: 3px;
}

.pkg-unsure-text span {

  font-size: 13px;

  color: var(--mid);
}

/* ADD-ONS */

.addons-section {

  margin-top: 48px;
}

.addons-label {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--orange);

  margin-bottom: 20px;
}

.addons-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2px;

  background: var(--border);

  margin-top: 48px;
}

.addon-cell {

  background: var(--white);

  padding: 20px 24px;

  transition: background 0.3s;
}

.addon-cell:hover {

  background: var(--orange-pale);
}

.addon-title {

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  color: var(--black);

  margin-bottom: 4px;
}

.addon-price {

  font-family: var(--fh);

  font-size: 20px;

  font-weight: 900;

  color: var(--orange);

  line-height: 1;

  margin-bottom: 4px;
}

.addon-desc {

  font-size: 12px;

  color: var(--mid);
}

/* WEBSITES WE'VE BUILT */

.our-work {

  background: var(--surface);

  padding: 88px 0;
}

.work-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2px;

  background: var(--border);
}

.work-card {

  background: var(--white);

  padding: 36px 28px 28px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 18px;

  text-align: center;

  transition: background 0.35s, transform 0.35s;

  position: relative;

  overflow: hidden;
}

.work-card::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 2px;

  background: var(--orange);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s;
}

.work-card:hover {

  background: var(--surface);

  transform: translateY(-5px);
}

.work-card:hover::after {

  transform: scaleX(1);
}

.work-logo {

  height: 52px;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;
}

.work-logo img {

  max-height: 52px;

  max-width: 140px;

  width: auto;

  object-fit: contain;

  transition: transform 0.4s;
}

.work-logo img.mono {

  filter: brightness(0);
}

.work-card:hover .work-logo img {

  transform: scale(1.05);
}

.work-divider {

  width: 32px;

  height: 1px;

  background: var(--border);
}

.work-name {

  font-family: var(--fh);

  font-size: 12px;

  font-weight: 700;

  color: var(--black);

  line-height: 1.3;
}

.work-desc {

  font-size: 12px;

  color: var(--mid);

  line-height: 1.65;
}

.work-link {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--orange);

  display: inline-flex;

  align-items: center;

  gap: 5px;

  margin-top: auto;

  padding-top: 4px;

  transition: gap 0.25s;
}

.work-link:hover {

  gap: 10px;
}

.work-link svg {

  width: 10px;

  height: 10px;

  stroke: currentColor;

  fill: none;

  stroke-width: 2.5;
}

/* FINAL CTA */

.final-cta {

  background: var(--orange);

  padding: 80px 0;

  position: relative;

  overflow: hidden;
}

.final-cta::before {

  content: 'CREATE';

  position: absolute;

  bottom: -20px;

  right: -10px;

  font-family: var(--fh);

  font-size: clamp(80px, 12vw, 180px);

  font-weight: 900;

  color: #00000012;

  line-height: 1;

  pointer-events: none;

  letter-spacing: -4px;
}

.final-cta-inner {

  text-align: center;

  max-width: 620px;

  margin: 0 auto;

  position: relative;

  z-index: 1;
}

.final-cta-label {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #ffffffa6;

  margin-bottom: 18px;
}

.final-cta-title {

  font-family: var(--fh);

  font-size: clamp(30px, 4.5vw, 56px);

  font-weight: 900;

  color: var(--white);

  line-height: 1.05;

  margin-bottom: 16px;
}

.final-cta-body {

  font-size: 16px;

  color: #ffffffb8;

  line-height: 1.8;

  margin-bottom: 36px;

  max-width: 480px;

  margin-left: auto;

  margin-right: auto;
}

.final-cta-btns {

  display: flex;

  gap: 14px;

  justify-content: center;

  flex-wrap: wrap;
}

/* ENQUIRY MODAL (Bootstrap .modal, brand-themed) */

.eq-modal-fm {

  --bs-modal-bg: var(--black);

  --bs-modal-color: var(--white);

  --bs-modal-border-color: #ffffff17;
}

.eq-modal-fm .modal-dialog {

  max-width: 600px;
}

.eq-modal-fm .modal-content {

  scrollbar-width: thin;

  scrollbar-color: #ff7a004d transparent;
}

.eq-modal-fm .modal-header {

  padding: 32px 36px 24px;

  border-bottom-color: #ffffff12;
}

.eq-modal-label {

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--orange);

  margin-bottom: 8px;
}

.eq-modal-title {

  font-family: var(--fh);

  font-size: 22px;

  font-weight: 900;

  color: var(--white);

  line-height: 1.2;
}

.eq-modal-fm .modal-body {

  padding: 0;
}

.eq-form {

  padding: 28px 36px 0;
}

.eq-row-2 {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.eq-field {

  margin-bottom: 18px;
}

.eq-label {

  display: block;

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 700;

  color: #ffffff8c;

  letter-spacing: 0.5px;

  margin-bottom: 7px;
}

.eq-label .req {

  color: var(--orange);
}

.eq-optional {

  color: #ffffff47;

  font-weight: 400;
}

.eq-input {

  width: 100%;

  background: #ffffff0d;

  border: 1px solid #ffffff1a;

  color: var(--white);

  font-family: var(--fb);

  font-size: 14px;

  padding: 12px 16px;

  outline: none;

  transition: border-color 0.25s, background 0.25s;
}

.eq-input::placeholder {

  color: #ffffff40;
}

.eq-input:focus {

  border-color: var(--orange);

  background: #ff7a000d;
}

.eq-select {

  appearance: none;

  cursor: pointer;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba%28255%2C255%2C255%2C0.35%29' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 14px center;

  background-size: 14px;

  padding-right: 40px;
}

.eq-select option {

  background: #1a1a1a;

  color: var(--white);
}

.eq-textarea {

  resize: vertical;

  min-height: 110px;
}

.eq-form-foot {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  padding: 16px 0 28px;

  border-top: 1px solid #ffffff12;

  margin-top: 4px;
}

.eq-privacy {

  font-size: 11px;

  color: #ffffff47;

  line-height: 1.55;

  max-width: 260px;
}

.eq-privacy a {

  color: #ff7a0099;

  transition: color 0.2s;
}

.eq-privacy a:hover {

  color: var(--orange);
}

.eq-submit {

  --bs-btn-padding-x: 24px;

  --bs-btn-padding-y: 14px;
}

.eq-success {

  display: none;

  text-align: center;

  padding: 32px 36px;
}

.eq-success svg {

  width: 52px;

  height: 52px;

  stroke: #4ade80;

  fill: none;

  stroke-width: 1.5;

  margin: 0 auto 16px;

  display: block;
}

.eq-success strong {

  display: block;

  font-family: var(--fh);

  font-size: 20px;

  font-weight: 900;

  color: var(--white);

  margin-bottom: 8px;
}

.eq-success p {

  font-size: 14px;

  color: #ffffff80;

  line-height: 1.65;
}

.eq-error {

  display: none;

  background: #ff3c3c14;

  border: 1px solid #ff3c3c33;

  padding: 12px 16px;

  margin: 0 36px 16px;

  font-size: 13px;

  color: #ffffffb3;

  line-height: 1.5;
}

.eq-error a {

  color: var(--orange);
}

.eq-wa-alt {

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 18px 36px;

  border-top: 1px solid #ffffff12;

  background: #ffffff05;
}

.eq-wa-alt span {

  font-size: 13px;

  color: #ffffff61;

  flex-shrink: 0;
}

@keyframes wa-btn-glow {

  0%,
  100% {

    box-shadow: 0 0 0 0 #25d36666;
  }

  50% {

    box-shadow: 0 0 0 5px #25d36600;
  }
}

.eq-wa-btn {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  font-family: var(--fh);

  font-size: 12px;

  font-weight: 700;

  color: #25d366;

  padding: 9px 16px;

  border: 1px solid #25d36638;

  background: #25d36612;

  transition: background 0.25s, border-color 0.25s;

  animation: wa-btn-glow 2.4s ease-in-out infinite;
}

.eq-wa-btn:hover {

  background: #25d36624;

  border-color: #25d3666b;
}

/*
  justified: Google's reCAPTCHA terms allow hiding this badge as long
  as the required attribution text appears in the UI instead — see
  .eq-privacy in the enquiry modal, which carries that notice. The
  !important is required to override the inline style Google's script
  sets on this element itself.
*/

.grecaptcha-badge {

  visibility: hidden !important;
}

/* RESPONSIVE */

@media (width < 900px) {

  .hero-content {

    padding: 72px 24px 60px;
  }

  .hero-ctas {

    flex-direction: column;

    align-items: flex-start;
  }

  .ch-inner {

    grid-template-columns: 1fr;

    gap: 48px;
  }

  .services-grid {

    grid-template-columns: 1fr 1fr;

    background: none;

    gap: 2px;
  }

  .pkg-grid {

    grid-template-columns: 1fr;
  }

  .addons-grid {

    grid-template-columns: 1fr 1fr;
  }

  .work-grid {

    grid-template-columns: 1fr 1fr;

    background: none;

    gap: 2px;
  }
}

@media (width < 600px) {

  .services-grid {

    grid-template-columns: 1fr;
  }

  .addons-grid {

    grid-template-columns: 1fr;
  }

  .work-grid {

    grid-template-columns: 1fr;
  }

  .ch-tags {

    grid-template-columns: 1fr;
  }

  .eq-row-2 {

    grid-template-columns: 1fr;
  }

  .eq-modal-fm .modal-header,
  .eq-form {

    padding-left: 22px;

    padding-right: 22px;
  }

  .eq-form-foot {

    flex-direction: column;

    align-items: stretch;
  }

  .eq-error {

    margin-left: 22px;

    margin-right: 22px;
  }

  .eq-wa-alt {

    padding-left: 22px;

    padding-right: 22px;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }

  .eq-success {

    padding-left: 22px;

    padding-right: 22px;
  }

  .pkg-unsure {

    flex-direction: column;
  }
}
