/* ============================================================
   Raiseaticket — Home Page Redesign
   Source: Section reference images (home-section1–5 + Footer)
   Prefix: .hp-
   Fonts : Instrument Sans (700,800) + Mulish (400,500)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&family=Mulish:wght@400;500;600;700;800&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand */
  --hp-navy:        #0D1B3E;   /* headings, dark elements */
  --hp-blue:        #0302B0;   /* eyebrows, active blue   */
  --hp-cyan:        #01A9E0;   /* "managed better" + icons */
  --hp-btn-fill:    #0302B0;   /* primary button fill     */

  /* Backgrounds */
  --hp-bg-hero-from:  #FFFFFF;
  --hp-bg-hero-mid:   #DCF2FA;
  --hp-bg-hero-to:    #C4EBF7;
  --hp-bg-value:      #EFF6FB;
  --hp-bg-features:   #F5F7FA;
  --hp-bg-white:      #FFFFFF;
  --hp-bg-cta-from:   #9EE5DB;
  --hp-bg-cta-to:     #C6E9F7;

  /* Text */
  --hp-text-dark:  #0D1B3E;
  --hp-text-body:  #4B5568;
  --hp-text-muted: #6B7280;

  /* Borders / shadows */
  --hp-border:        #E5E7EB;
  --hp-shadow-card:   0 2px 16px rgba(13,27,62,.06), 0 1px 4px rgba(0,0,0,.04);
  --hp-shadow-hover:  0 8px 40px rgba(13,27,62,.12), 0 2px 8px rgba(0,0,0,.06);
  --hp-shadow-hero:   0 8px 48px rgba(1,169,224,.14), 0 2px 12px rgba(0,0,0,.08);

  /* Radius */
  --hp-r-sm:    8px;
  --hp-r-md:   16px;
  --hp-r-lg:   24px;
  --hp-r-xl:   32px;
  --hp-r-pill: 999px;

  /* Spacing */
  --hp-sec-py:  100px;
  --hp-gutter:   24px;
  --hp-max-w:  1200px;

  /* Font stacks */
  --hp-ff-head: 'Mulish', 'Segoe UI', system-ui, sans-serif;
  --hp-ff-body: 'Instrument Sans', 'Mulish', 'Segoe UI', sans-serif;

  --hp-ease: cubic-bezier(.16,1,.3,1);
}

/* ── Scoped reset ──────────────────────────────────────────── */
.hp-page *, .hp-page *::before, .hp-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hp-page {
  font-family: var(--hp-ff-body);
  font-size: 16px;
  color: var(--hp-text-dark);
  background: var(--hp-bg-white);
  -webkit-font-smoothing: antialiased;
}
.hp-page img { max-width: 100%; height: auto; display: block; }
.hp-page a   { color: inherit; text-decoration: none; }
.hp-page ul  { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.hp-container {
  max-width: var(--hp-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--hp-gutter);
  padding-right: var(--hp-gutter);
}

/* ── Shared eyebrow ────────────────────────────────────────── */
.hp-eyebrow {
  display: block;
  font-family: var(--hp-ff-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hp-blue);
  margin-bottom: 14px;
}
.hp-eyebrow--center { text-align: center; }

/* ── Shared section title ──────────────────────────────────── */
.hp-section-title {
  font-family: var(--hp-ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--hp-navy);
  margin-bottom: 20px;
}
.hp-section-title--center { text-align: center; }

/* ── Shared section body ───────────────────────────────────── */
.hp-section-body {
  font-family: var(--hp-ff-body);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--hp-text-body);
}
.hp-section-body--center { text-align: center; }

/* ── Buttons ───────────────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hp-ff-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--hp-r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background .22s var(--hp-ease),
              color .22s var(--hp-ease),
              border-color .22s var(--hp-ease),
              box-shadow .22s var(--hp-ease),
              transform .18s var(--hp-ease);
}
.hp-btn:hover { transform: translateY(-2px); }
.hp-btn:active { transform: translateY(0); }

/* dark navy fill — primary */
.hp-btn--primary {
  color: #fff;
  border-radius: 9999px;
  border: 1.5px solid #01A9E0;
  background: linear-gradient(95deg, #0302B0 1.34%, #01A9E0 97.22%);
  background-clip: padding-box;
}
.hp-btn--primary:hover {
  box-shadow: 0 6px 24px rgba(3,2,176,.35);
  opacity: .92;
}

/* outlined — secondary */
.hp-btn--outline {
  color: #fff;
  border-radius: 9999px;
  border: 1.5px solid #01A9E0;
  background: linear-gradient(95deg, #0302B0 1.34%, #01A9E0 97.22%);
  background-clip: padding-box;
}
.hp-btn--outline:hover {
  box-shadow: 0 6px 24px rgba(3,2,176,.35);
  opacity: .92;
}

/* outlined blue variant (features CTA) */
.hp-btn--outline-blue {
  font-size: 16px;
  font-weight: 600;
  border-radius: 9999px;
  border: 1.5px solid #01A9E0;
  background: linear-gradient(95deg, #0302B0 1.34%, #01A9E0 97.22%);
  background-clip: padding-box;
  color: #F3F5FF;
}
.hp-btn--outline-blue:hover {
  box-shadow: 0 6px 24px rgba(3,2,176,.30);
  opacity: .92;
}
/* force text + icon color over .hp-page a { color: inherit } */
.hp-features .hp-btn--outline-blue,
.hp-features .hp-btn--outline-blue i {
  color: #F3F5FF;
}

/* ── Section 1 (hero) + Section 5 (CTA banner) button overrides ─
   Shared so both sections render identical buttons.
   Higher specificity (0,2,x) beats .hp-page a { color: inherit }. */
/* primary — force white text + icon */
.hp-hero .hp-btn--primary,
.hp-hero .hp-btn--primary i,
.hp-cta-banner .hp-btn--primary,
.hp-cta-banner .hp-btn--primary i {
  color: #fff;
}
/* Book a demo — white background, dark border, gradient text */
.hp-hero .hp-btn--outline,
.hp-cta-banner .hp-btn--outline {
  background: #fff;
  border: 1px solid #19182D;
}
/* gradient text fill on the label span */
.hp-hero .hp-btn--outline .hp-btn__gtext,
.hp-cta-banner .hp-btn--outline .hp-btn__gtext {
  background: linear-gradient(180deg, #19182D 0%, #0302B0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* icon tinted to the gradient's base tone */
.hp-hero .hp-btn--outline i,
.hp-cta-banner .hp-btn--outline i,
.hp-hero .hp-btn--outline .hp-btn__arrow,
.hp-cta-banner .hp-btn--outline .hp-btn__arrow {
  color: #19182D;
}
/* thin SVG arrow (replaces heavy FA solid 900 glyph) */
.hp-btn__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
}

/* button group */
.hp-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION 1 — HERO
   White → teal-cyan gradient. Left text / Right dashboard card.
   ============================================================ */

.hp-hero {
  background: linear-gradient(120deg,
    var(--hp-bg-hero-from) 0%,
    var(--hp-bg-hero-from) 30%,
    var(--hp-bg-hero-mid)  65%,
    var(--hp-bg-hero-to)   100%);
  padding-top: 88px;
  padding-bottom: 88px;
  overflow: hidden;
}

.hp-hero__inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

/* Left column */
.hp-hero__content {
  flex: 0 0 48%;
  max-width: 48%;
}

.hp-hero__eyebrow {
  display: block;
  font-family: var(--hp-ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--hp-blue);
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.hp-hero__title {
  font-family: var(--hp-ff-head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--hp-navy);
  margin-bottom: 24px;
}

.hp-hero__title .hp-text-cyan {
  color: var(--hp-cyan);
  display: block;
}

.hp-hero__body {
  font-family: var(--hp-ff-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  color: #232321;
  margin-bottom: 36px;
  max-width: 460px;
}

/* Right column */
.hp-hero__visual {
  flex: 1 1 auto;
  position: relative;
}

/* Hero visual: a single laptop mock (home-hero-laptop-img.png).
   The art is transparent and carries its own shadow, so the frame the old
   composition needed — white fill, radius, shadow, near-square aspect-ratio,
   overflow clip — is deliberately gone. No aspect-ratio: the image sets its
   own (landscape ~1.25:1); forcing one would letterbox or crop it. */
.hp-banner {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.hp-banner__laptop {
  width: 100%;
  height: auto;
  display: block;
}

.hp-hero__image-card {
  background: #fff;
  border-radius: var(--hp-r-xl);
  box-shadow: var(--hp-shadow-hero);
  overflow: hidden;
  border: 1px solid rgba(228,231,240,.5);
  padding: 14px;
  position: relative;
  z-index: 1;
}

.hp-hero__image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Empty dummy placeholder — same footprint as the removed screenshot */
.hp-hero__img-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #E9ECF3;
  border-radius: calc(var(--hp-r-xl) - 8px);
}

.hp-hero__blob {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1,169,224,.10) 0%, transparent 68%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   SECTION 2 — VALUE PROPS
   Light blue-gray bg. Centered header → full-width screenshot
   → 4-column icon grid.
   ============================================================ */

.hp-value {
  background: linear-gradient(357deg, #D3F8E2 -17.39%, #F8F9FF 51.37%);
  padding-top: var(--hp-sec-py);
  padding-bottom: var(--hp-sec-py);
}

.hp-value__header {
  text-align: center;
  margin-bottom: 52px;
}

/* Section 2 eyebrow */
.hp-value .hp-eyebrow {
  font-size: 22px;
  font-weight: 700;
  text-transform: none;
}

.hp-value__title {
  font-size: 48px;
  font-weight: 800;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hp-value__body {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 18px;
  font-size: 24px;
  font-weight: 400;
  color: #232321;
  line-height: 1.7;
}

/* Browser-chrome screenshot wrapper */
.hp-value__screenshot-wrap {
  background: #fff;
  border-radius: var(--hp-r-lg);
  box-shadow: var(--hp-shadow-card);
  overflow: hidden;
  border: 1px solid var(--hp-border);
  margin-bottom: 64px;
}

/* Faux browser chrome bar */
.hp-value__screenshot-wrap::before {
  content: '';
  display: block;
  height: 30px;
  background: #F3F4F6;
  border-bottom: 1px solid var(--hp-border);
  background-image:
    radial-gradient(circle, #D1D5DB 5px, transparent 5px),
    radial-gradient(circle, #D1D5DB 5px, transparent 5px),
    radial-gradient(circle, #D1D5DB 5px, transparent 5px);
  background-size: 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px center, 32px center, 50px center;
  background-repeat: no-repeat;
}

.hp-value__screenshot-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* 4-column grid */
.hp-value__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.hp-value__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hp-value__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0302B0;
  font-size: 18px;
  flex-shrink: 0;
}

.hp-value__item-title {
  font-family: var(--hp-ff-head);
  font-size: 24px;
  font-weight: 600;
  color: #212738;
  line-height: 1.3;
}

.hp-value__item-body {
  font-family: var(--hp-ff-body);
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.65;
}

/* ============================================================
   SECTION 3 — KEY FEATURES
   Light gray bg. Header centered. 2×2 illustrated white cards.
   CTA button below grid.
   ============================================================ */

.hp-features {
  background: var(--hp-bg-features);
  padding-top: var(--hp-sec-py);
  padding-bottom: var(--hp-sec-py);
}

.hp-features__header {
  text-align: center;
  margin-bottom: 52px;
}

/* Section 3 eyebrow */
.hp-features .hp-eyebrow {
  font-size: 22px;
  text-transform: none;
}

.hp-features__title {
  font-size: 48px;
  font-weight: 700;
  color: #212738;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* 2×2 grid */
.hp-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.hp-features__card {
  background: #fff;
  border-radius: var(--hp-r-lg);
  box-shadow: var(--hp-shadow-card);
  overflow: hidden;
  border: 1px solid rgba(229,231,235,.8);
  transition: box-shadow .25s var(--hp-ease),
              transform .20s var(--hp-ease);
}

.hp-features__card:hover {
  box-shadow: var(--hp-shadow-hover);
  transform: translateY(-4px);
}

/* Illustration area */
.hp-features__card-illustration {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.hp-features__card-illustration img,
.hp-features__card-illustration svg {
  max-width: 70%;
  max-height: 160px;
  object-fit: contain;
}

/* Card text area — centered */
.hp-features__card-body {
  padding: 28px 32px 36px;
  text-align: center;
}

.hp-features__card-title {
  font-family: var(--hp-ff-head);
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(180deg, #000 0%, #001354 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 10px;
}

.hp-features__card-desc {
  font-family: var(--hp-ff-body);
  font-size: 16px;
  font-weight: 400;
  color: #010D3E;
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

/* "View more" CTA row */
.hp-features__cta {
  text-align: center;
}

/* ============================================================
   SECTION 4 — INTEGRATIONS
   White bg. Two marquee rows of square-rounded-corner app tiles.
   Eyebrow + H2 + body between the rows.
   ============================================================ */

.hp-integrations {
  background: var(--hp-bg-white);
  padding-top: var(--hp-sec-py);
  padding-bottom: var(--hp-sec-py);
  overflow: hidden;
}

.hp-integrations__inner {
  text-align: center;
}

/* Scrollable icon row wrapper — fades on edges */
.hp-integrations__row-wrap {
  position: relative;
  margin-bottom: 16px;
}

.hp-integrations__row-wrap::before,
.hp-integrations__row-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.hp-integrations__row-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--hp-bg-white) 0%, transparent 100%);
}

.hp-integrations__row-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--hp-bg-white) 0%, transparent 100%);
}

/* The flex row of tiles */
.hp-integrations__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 8px 0;
}

/* Individual square-rounded-corner tile */
.hp-integrations__tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform .2s var(--hp-ease), box-shadow .2s var(--hp-ease);
}

.hp-integrations__tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,.10);
}

/* Fade out edge tiles */
.hp-integrations__tile--fade-1 { opacity: .55; }
.hp-integrations__tile--fade-2 { opacity: .25; }

/* Per-brand icon colors */
.hp-tile--discord   { color: #5865F2; }
.hp-tile--notion    { color: #000000; }
.hp-tile--jira      { color: #0052CC; }
.hp-tile--todoist   { color: #DB4035; }
.hp-tile--whatsapp  { color: #25D366; }
.hp-tile--telegram  { color: #2AABEE; }
.hp-tile--trello    { color: #0052CC; }
.hp-tile--slack     { color: #4A154B; }
.hp-tile--github    { color: #24292E; }
.hp-tile--gitlab    { color: #FC6D26; }
.hp-tile--chrome    { color: #4285F4; }
.hp-tile--firefox   { color: #FF7139; }
.hp-tile--safari    { color: #006CFF; }
.hp-tile--gmail     { color: #EA4335; }
.hp-tile--dropbox   { color: #0061FF; }
.hp-tile--drive     { color: #0F9D58; }
.hp-tile--zoom      { color: #2D8CFF; }
.hp-tile--wordpress { color: #21759B; }
.hp-tile--aws       { color: #FF9900; }
.hp-tile--shopify   { color: #96BF48; }
.hp-tile--stripe    { color: #635BFF; }
.hp-tile--facebook  { color: #1877F2; }
.hp-tile--linkedin  { color: #0A66C2; }
.hp-tile--instagram { color: #E4405F; }

/* Header block between the two rows */
.hp-integrations__header {
  padding: 52px 0 44px;
  max-width: 700px;
  margin: 0 auto;
}

/* Section 4 eyebrow — match sections 2 & 3 */
.hp-integrations .hp-eyebrow {
  font-size: 22px;
  font-weight: 700;
  text-transform: none;
}

.hp-integrations__title {
  font-size: 48px;
  font-weight: 700;
  color: #212738;
  max-width: 600px;
  margin: 0 auto 20px;
}

.hp-integrations__body {
  max-width: 580px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  color: #232321;
}

/* ============================================================
   SECTION 5 — CTA BANNER
   Pastel teal→blue gradient. LEFT-ALIGNED text + buttons.
   ============================================================ */

.hp-cta-banner {
  background: linear-gradient(135deg,
    var(--hp-bg-cta-from) 0%,
    #B0E8F5 55%,
    var(--hp-bg-cta-to) 100%);
  padding-top: 96px;
  padding-bottom: 96px;
}

/* Inner block — left-aligned, max-width constrained */
.hp-cta-banner__inner {
  max-width: 800px;
}

.hp-cta-banner__eyebrow {
  display: block;
  font-family: var(--hp-ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--hp-blue);
  letter-spacing: .04em;
  text-transform: none;
  margin-bottom: 18px;
}

.hp-cta-banner__title {
  font-family: var(--hp-ff-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #212738;
  margin-bottom: 20px;
}

.hp-cta-banner__body {
  font-family: var(--hp-ff-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  color: #232321;
  max-width: 680px;
  margin-bottom: 36px;
}

.hp-cta-banner__btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */

@media (max-width: 992px) {
  :root { --hp-sec-py: 72px; }

  .hp-hero__inner {
    flex-direction: column;
    gap: 40px;
  }

  .hp-hero__content,
  .hp-hero__visual {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .hp-hero__content { padding-right: 0; }

  .hp-value__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .hp-integrations__row { flex-wrap: wrap; }

  .hp-integrations__row-wrap::before,
  .hp-integrations__row-wrap::after { display: none; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {
  :root { --hp-sec-py: 56px; }

  .hp-features__grid { grid-template-columns: 1fr; }

  .hp-value__grid { grid-template-columns: 1fr; gap: 24px; }

  .hp-hero__title { font-size: 2rem; }

  .hp-section-title { font-size: 1.75rem; }

  .hp-integrations__tile { width: 50px; height: 50px; font-size: 18px; }
}

/* ============================================================
   FOOTER
   Dark navy bg (#141827). Teal column headers. White links.
   5-column grid: brand | product+contact | solutions+company |
   features | resources.
   ============================================================ */

.hp-site-footer {
  background: #141827;
  padding-top: 72px;
  color: #fff;
  font-family: var(--hp-ff-body);
}

/* 5-column grid */
.hp-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1fr;
  gap: 40px 32px;
  padding-bottom: 60px;
}

/* Brand column stretches full height so "Powered by" sticks to the bottom */
.hp-footer__brand {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Brand column ── */
.hp-footer__logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 32px;
}

.hp-footer__socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hp-footer__soc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8B93A7;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
  transition: color .2s;
  flex-shrink: 0;
}

.hp-footer__soc-link:hover {
  color: #fff;
}

/* ── Navigation columns ── */
.hp-footer__col {
  display: flex;
  flex-direction: column;
}

/* Two stacked groups inside one column */
.hp-footer__col-group + .hp-footer__col-group {
  margin-top: 36px;
}

/* Column heading — teal */
.hp-footer__col-head {
  font-family: var(--hp-ff-head);
  font-size: 20px;
  font-weight: 600;
  color: #A0DDF6;
  margin: 0 0 18px;
  letter-spacing: .01em;
}

/* Link list */
.hp-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-footer__links a {
  font-size: 16px;
  font-weight: 500;
  color: #F8F9FF;
  text-decoration: none;
  transition: color .2s;
  line-height: 1.4;
}

.hp-footer__links a:hover {
  color: #fff;
}

/* ── Bottom "Powered by" strip ── */
.hp-footer__powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.40);
}

.hp-footer__fonicom-logo {
  width: 88px;
  height: 37px;
  filter: brightness(0) invert(.5);
  vertical-align: middle;
}

/* ── Footer responsive ── */
@media (max-width: 992px) {
  .hp-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .hp-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .hp-footer__grid {
    grid-template-columns: 1fr;
  }
}
