/*
  Vanilla CSS export of the GO App Download page.
  No HubSpot/Hubl dependencies.
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  /* GO app palette (used across Programmed / PERSOL GO) */
  --color-navy: #002855;
  --color-lime: #00bfb3;
  --color-gold: #ffb81c;
  --color-white: #ffffff;
  --color-gray-light: #f2f2f3;
  --color-text: #2b2a29;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 22px rgba(0, 0, 0, 0.1);
}

body {
  background: var(--color-white);
  color: var(--color-text);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: var(--color-white);
  box-shadow: none;
  border-bottom: 1px solid #e7e7e7;
  padding: 18px 0;
  position: static;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  display: flex;
  justify-content: center;
}

.site-logo img {
  max-height: 48px;
  height: auto;
  width: auto;
  display: block;
}

.go-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-lime);
  color: var(--color-navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.section {
  padding: 40px 20px;
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.section--gray {
  background: var(--color-gray-light);
}

.section--white {
  background: var(--color-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-mockup-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-mockup {
  width: auto;
  max-width: 100%;
  height: clamp(520px, 45vw, 740px);
  display: block;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin: 0 0 16px 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.hero-kicker strong {
  color: var(--color-gold);
}

.hero-list {
  list-style: none;
  margin: 18px 0 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1;
  margin-top: 2px;
}

.app-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-sm);
  display: block;
}

.app-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: var(--color-white);
  margin: 0;
  line-height: 1.1;
}

.app-byline {
  margin: 4px 0 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
  max-width: 520px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: var(--color-white);
  color: var(--color-navy);
}

.store-badge--primary {
  background: var(--color-navy);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--color-white);
}

.store-badge:hover,
.store-badge:focus,
.store-badge:active {
  background: inherit;
  color: inherit;
  border-color: inherit;
  transform: none;
  box-shadow: none;
  text-decoration: none;
}

.store-badge__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-badge__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.2px;
}

.store-badge__title {
  font-size: 1rem;
  font-weight: 800;
  margin-top: 2px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 12px 0;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin: 0 auto 26px auto;
  max-width: 780px;
  color: #555;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.feature-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-lime);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-navy);
}

.feature-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.feature-card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.screenshot-card {
  background: #0c2340;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  background: #0c2340;
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.step-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--color-navy);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.step-card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.cta-strip {
  margin-top: 26px;
  background: var(--color-navy);
  border-radius: 14px;
  padding: 22px;
  color: var(--color-white);
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.cta-strip h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
}

.cta-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.cta-strip .download-grid {
  margin: 10px auto 0;
}

.faq {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--color-navy);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--color-navy);
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 10px 0 0 0;
  color: #555;
  font-size: 1rem;
}

.footer {
  padding: 28px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  background: var(--color-white);
}

.footer strong {
  color: var(--color-navy);
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .download-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .screenshot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-mockup-wrap {
    justify-content: center;
  }
  .hero-mockup {
    width: 100%;
    max-width: 520px;
    height: auto;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 374px) {
  .container {
    padding: 0 12px;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .store-badge {
    min-height: 56px;
    padding: 10px 14px;
  }
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}

