/* ============================================================
   Next Business Registration — styles.css
   Colour scheme: Logo-matched white / charcoal black / blue
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Blues — pulled directly from the logo wave */
  --blue-deep:     #163a5f;   /* darkest — logo top wave */
  --blue-mid:      #1f5c96;   /* main wave body           */
  --blue-bright:   #2e7fc1;   /* wave highlight / accent  */
  --blue-light:    #5ba3d9;   /* light hover tint         */
  --blue-pale:     #e8f2fa;   /* very light blue tint bg  */
  --blue-faint:    rgba(31,92,150,0.08);

  /* Neutrals */
  --black:         #111318;   /* near-black text          */
  --charcoal:      #1e2229;   /* headings on light bg     */
  --dark-mid:      #2c3440;   /* secondary dark           */
  --white:         #ffffff;
  --off-white:     #f7f9fc;   /* section bg               */
  --border-light:  #dce6ef;   /* borders on white bg      */
  --border-mid:    #b8cfdf;

  /* Text */
  --text-primary:  #111318;
  --text-second:   #2c3440;
  --text-muted:    #4e6070;
  --text-dim:      #7a90a0;
  --text-white:    #ffffff;
  --text-white-70: rgba(255,255,255,0.72);
  --text-white-40: rgba(255,255,255,0.42);

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  --header-h:      72px;
  --max-w:         1100px;
}

/* ── HARD RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  background-color: var(--white);
  background-image: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: 17px; font-weight: 600; }

p { color: var(--text-muted); }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 96px 0;
  background-image: none;
}

.text-center { text-align: center; }
.mt-md { margin-top: 32px; }

/* Section label above headings */
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue-bright);
  opacity: 0.55;
}

/* Gold rule replaced with blue */
.section-divider {
  width: 40px;
  height: 3px;
  background: var(--blue-mid);
  border-radius: 2px;
  margin: 14px auto 44px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.cta-button,
a.cta-button,
button.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--blue-mid);
  background-image: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  transition: background-color 0.2s, transform 0.15s;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--blue-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost,
a.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: transparent;
  background-image: none;
  border: 1.5px solid var(--blue-mid);
  color: var(--blue-mid);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-ghost:hover {
  background-color: var(--blue-mid);
  color: var(--white);
}

/* ── HEADER ─────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background-color: var(--white);
  background-image: none;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  /* Logo is already full colour — no filter needed */
}

nav { display: flex; align-items: center; }

nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.2s, background-color 0.2s;
  text-decoration: none;
}

nav ul li a:hover {
  color: var(--blue-mid);
  background-color: var(--blue-faint);
}

/* Client Portal — last nav item */
nav ul li:last-child a {
  color: var(--white);
  background-color: var(--blue-mid);
  padding: 8px 18px;
  font-weight: 500;
  transition: background-color 0.2s;
}

nav ul li:last-child a:hover {
  background-color: var(--blue-deep);
  color: var(--white);
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: var(--charcoal);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  user-select: none;
  background: none;
  border: none;
}

/* ── HERO ────────────────────────────────────────────────── */
#home {
  /* Deep blue hero — dark version of the logo */
  background-color: var(--blue-deep) !important;
  background-image: none !important;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 100%;
  padding: var(--header-h) 0 60px;
}

/* Inner wrapper to constrain content */
#home > * {
  max-width: calc(var(--max-w) / 2 - 30px);
}

#home > .hero-content {
  margin-left: max(40px, calc((100vw - var(--max-w)) / 2 + 40px));
}

#home > .hero-panel-wrap {
  margin-right: max(40px, calc((100vw - var(--max-w)) / 2 + 40px));
}

.hero-content { text-align: left; }

.hero-content .section-eyebrow {
  justify-content: flex-start;
  color: var(--blue-light);
}

.hero-content .section-eyebrow::before { background: var(--blue-light); }
.hero-content .section-eyebrow::after  { display: none; }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--blue-light);
}

.hero-content > p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-white-70);
  max-width: 440px;
  margin-bottom: 38px;
  line-height: 1.8;
}

/* Hero buttons — inverted on dark bg */
.hero-content .cta-button {
  background-color: var(--white);
  color: var(--blue-deep);
}

.hero-content .cta-button:hover {
  background-color: var(--blue-pale);
  color: var(--blue-deep);
}

.hero-content .btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.hero-content .btn-ghost:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.trust-item { display: flex; flex-direction: column; gap: 4px; }

.trust-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  font-size: 11px;
  color: var(--text-white-40);
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Hero right panel */
.hero-panel-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-panel {
  background-color: rgba(255,255,255,0.07);
  background-image: none;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 36px;
  width: 100%;
  max-width: 340px;
  position: relative;
  backdrop-filter: blur(6px);
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: -1px; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.panel-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-white-40);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.panel-service {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: padding-left 0.2s;
  text-decoration: none;
}

.panel-service:last-of-type { border-bottom: none; }
.panel-service:hover { padding-left: 6px; }

.panel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.panel-service:hover .panel-dot { background-color: var(--blue-light); }

.panel-service-name {
  font-size: 14px;
  color: var(--text-white-70);
  flex: 1;
}

.panel-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}

.panel-service:hover .panel-arrow { color: var(--blue-light); }

.panel-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 3px;
  transition: background-color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.panel-cta:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ── ABOUT ───────────────────────────────────────────────── */
#about {
  background-color: var(--off-white) !important;
  background-image: none !important;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

#about h2 { text-align: center; color: var(--charcoal); }

.about-content {
  max-width: 880px;
  margin: 0 auto;
}

.intro-text,
.outro-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}

.outro-text { margin-top: 44px; margin-bottom: 0; }

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background-color: transparent;
  border: none;
}

.service-card {
  background-color: var(--white);
  background-image: none;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--blue-mid);
  border-radius: 6px;
  padding: 32px 28px;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card ul { display: flex; flex-direction: column; gap: 10px; }

.service-card ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 2px;
  background-color: var(--blue-mid);
  opacity: 0.5;
}

/* ── SERVICES ────────────────────────────────────────────── */
#services {
  background-color: var(--white) !important;
  background-image: none !important;
}

#services h2 { text-align: center; color: var(--charcoal); }

.services-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 52px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background-color: transparent;
  border: none;
}

.service-item {
  display: block;
  background-color: var(--white);
  background-image: none;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px 24px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background-color: var(--blue-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-item:hover {
  border-color: var(--border-mid);
  box-shadow: 0 4px 20px rgba(31,92,150,0.10);
  transform: translateY(-2px);
}

.service-item:hover::before { transform: scaleX(1); }

.service-number {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--border-mid);
  margin-bottom: 16px;
  transition: color 0.25s;
}

.service-item:hover .service-number { color: var(--blue-mid); }

.service-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1;
  background-color: var(--blue-pale);
  transition: border-color 0.25s, background-color 0.25s;
}

.service-item:hover .service-icon {
  border-color: var(--blue-light);
  background-color: #d4e8f6;
}

.service-item h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
  background-color: var(--off-white) !important;
  background-image: none !important;
  border-top: 1px solid var(--border-light);
}

#contact .container { max-width: 840px; text-align: center; }
#contact h2 { text-align: center; color: var(--charcoal); }

#contact > .container > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
  text-align: left;
}

.contact-item {
  background-color: var(--white);
  background-image: none;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--blue-mid);
  border-radius: 6px;
  padding: 24px 22px;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 10px;
}

.contact-item-value {
  font-size: 14px;
  color: var(--text-second);
  line-height: 1.6;
}

.contact-item-value a {
  color: var(--text-second);
  transition: color 0.2s;
  text-decoration: none;
}

.contact-item-value a:hover { color: var(--blue-mid); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background-color: var(--charcoal) !important;
  background-image: none !important;
  padding: 32px 0;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

footer p { font-size: 13px; color: rgba(255,255,255,0.45); }
footer a { color: rgba(255,255,255,0.45); transition: color 0.2s; text-decoration: none; }
footer a:hover { color: var(--blue-light); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TABLET ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  #home {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 64px;
  }

  #home > .hero-content,
  #home > .hero-panel-wrap {
    margin-left: 40px;
    margin-right: 40px;
    max-width: 100%;
  }

  .hero-panel-wrap { display: none; }
  .service-grid    { grid-template-columns: repeat(2, 1fr); }
  .service-cards   { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
}

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }

  #home > .hero-content,
  #home > .hero-panel-wrap {
    margin-left: 20px;
    margin-right: 20px;
  }

  .service-grid { grid-template-columns: 1fr; }

  nav { display: none; }

  nav.active {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background-color: var(--white);
    background-image: none;
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0 16px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  nav.active ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
  }

  nav.active ul li a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    border-radius: 0;
    color: var(--text-second);
    background: none;
  }

  nav.active ul li:last-child a {
    border-bottom: none;
    background-color: var(--blue-mid);
    color: var(--white);
    border-radius: 4px;
    padding: 12px 16px;
    margin-top: 10px;
    text-align: center;
  }

  .menu-toggle { display: block; }

  footer .container { flex-direction: column; text-align: center; }

  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   PROJECT TRACKER SECTION
   ═══════════════════════════════════════════════════════════ */
#project-tracker {
  background-color: var(--blue-deep) !important;
  background-image: none !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left copy */
.pt-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.pt-left h2 em {
  font-style: italic;
  color: var(--blue-light);
}

.pt-left p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}

.pt-eyebrow {
  color: var(--blue-light) !important;
  justify-content: flex-start !important;
}

.pt-eyebrow::before { background: var(--blue-light) !important; }
.pt-eyebrow::after  { display: none !important; }

.pt-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pt-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--blue-mid);
  background-image: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.2s, transform 0.15s;
}

.pt-btn:hover {
  background-color: var(--blue-deep);
  color: var(--white);
  transform: translateY(-1px);
  text-decoration: none;
}

.pt-btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.2s, border-color 0.2s;
}

.pt-btn-ghost:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  text-decoration: none;
}

/* Feature grid */
.pt-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.pt-feature {
  background-color: rgba(255,255,255,0.04);
  padding: 28px 22px;
  transition: background-color 0.2s;
}

.pt-feature:hover { background-color: rgba(255,255,255,0.09); }

.pt-feature-icon {
  width: 38px;
  height: 38px;
  background: rgba(46,127,193,0.18);
  border: 1px solid rgba(46,127,193,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.pt-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue-light);
  fill: none;
}

.pt-feature h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.pt-feature p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* Trust strip */
.pt-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.pt-trust-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.pt-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.pt-trust-item {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pt-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .pt-inner { grid-template-columns: 1fr; gap: 44px; }
  .pt-left p { max-width: 100%; }
}

@media (max-width: 640px) {
  .pt-features { grid-template-columns: 1fr; }
  .pt-trust-divider { display: none; }
  .pt-cta-row { flex-direction: column; align-items: flex-start; }
}
