/* ================= ROOT ================= */
:root {
  --meta-blue: #0081fb;
  --download-purple: #2f1f50;
  --neutral-400: #9ca3af;
}

body {
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  color: var(--neutral-400);
}

img {
  max-width: 100%;
}

/* ================= PAGE CARD (FIGMA WRAPPER) ================= */
.page-card {
  width: 100%; /* matches figma 1848px feel */
  margin: 24px auto; /* center card */
  padding: 5px 32px; /* inner spacing */
}

/* Prevent horizontal overflow */
.page-card > section {
  width: 100%;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .page-card {
    margin: 12px;
    padding: 32px 16px 48px;
    border-radius: 16px;
  }
}

/* ================= HEADER ================= */
.linkchat-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  height: 88px; /* UNIVERSAL HEIGHT */
  border-bottom: 1px solid #eef2f7;
}

.linkchat-header-inner {
  height: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center; /* CENTER CONTENT VERTICALLY */
  justify-content: space-between;
}

.linkchat-logo {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
}

/* Header buttons wrapper */
.linkchat-header-actions {
  display: flex;
  gap: 12px;
}

/* DM TOOL BUTTON */
.btn-dm-tool {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  font-weight: 500;
  font-size: 14px;
}

.btn-dm-tool img {
  width: 32px;
  height: auto;
}

/* DOWNLOAD BUTTON */
.btn-download {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--download-purple);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
}

.btn-download img {
  width: 32px;
  height: auto;
}

/* ================= HERO ================= */
.linkchat-hero {
  min-height: 80vh;
  background: #ffffff;
  border-radius: 24px; /* rounded corners like figma */
  border: 1px solid #eef2f7; /* light border */
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04),
    0 1px 2px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: 10px 0;
}

.linkchat-hero-left {
  padding: 0 42px;
}

.linkchat-hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
}

.linkchat-hero-left p {
  font-size: 16px;
  max-width: 520px;
  color: #6b7280;
  margin-bottom: 32px;
}

.hero-right {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* META VERIFIED */
.meta-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--meta-blue);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.meta-verified img {
  width: 14px;
  height: auto;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* SEE HOW IT WORKS */
.btn-see-work {
  padding: 12px 20px;
  border-radius: 8px;
  background: #d1d5db;
  color: var(--neutral-400);
  font-size: 14px;
  font-weight: 500;
  border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .linkchat-header {
    height: auto;
    padding: 12px 0;
  }

  .linkchat-logo {
    font-size: 32px;
  }

  .linkchat-header-actions {
    display: none;
  }

  .linkchat-header-inner {
    padding: 0 16px;
  }

  .page-card {
    margin: 0%;
    padding: 10px; /* inner spacing */
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .meta-verified,
  .btn-see-work,
  .btn-download {
    font-size: 24px;
  }

  .meta-verified img {
    width: 24px;
  }

  .btn-download img {
    width: 42px;
  }

  .linkchat-hero-left {
    text-align: center;
    padding: 0 16px;
  }

  .linkchat-hero-left h1 {
    font-size: 40px;
  }
}

/* ================= VIDEO ================= */
.hero-video {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero-left h1 {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}

/* LEFT SIDE */
.footer-label {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
}

.footer-dm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 30px;
}

.footer-logo-img {
  max-width: 820px;
  width: 100%;
  margin: 20px 0 10px;
}

.footer-copy {
  font-size: 12px;
  color: #9ca3af;
}

/* =========================
   RIGHT IMAGE ONLY
========================= */

.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-right-image {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .footer-right {
    justify-content: center;
    margin-top: 40px;
  }

  .footer-right-image {
    max-width: 300px;
  }

  .footer-left {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-dm-btn {
    margin: 0 auto 30px;
  }

  .footer-logo-img {
    margin: 20px auto;
    display: block;
  }
}

/* TABLET */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero-btns .btn {
    width: auto;
    margin-right: 10px;
  }
}

/* DESKTOP */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 56px;
  }
  .cta h2 {
    font-size: 40px;
  }
}


/* linkchat wordmark (SVG) */
.linkchat-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .linkchat-logo-img { height: 34px; }
}
