/* gws-components.css — Nav, Footer, Cookie Banner, Cards, Forms */

/* ============================================================
   Navigation
   ============================================================ */
.gws-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: var(--gws-bg-dark);
  border-bottom: 1px solid rgba(245, 239, 232, 0.1);
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

/* Scrolled state — dark nav */
.gws-nav.gws-nav--scrolled {
  box-shadow: 0 2px 16px rgba(26, 21, 16, 0.18);
}

/* Light-top pages: nav is always dark (never transparent white) */
body.gws-page--light-top .gws-nav {
  background-color: var(--gws-bg-dark);
  border-bottom-color: rgba(245, 239, 232, 0.1);
}

.gws-nav__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.gws-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.gws-nav__logo img {
  height: 28px;
  width: auto;
  max-width: 180px;
}

.gws-nav__logo:hover {
  opacity: 0.85;
}

.gws-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.gws-nav__link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 239, 232, 0.82);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.gws-nav__link:hover {
  color: var(--gws-fg-on-dark-primary);
  background-color: rgba(245, 239, 232, 0.08);
  text-decoration: none;
}

.gws-nav__link--active {
  color: var(--gws-fg-on-dark-primary);
}

.gws-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.gws-nav__btn-signin {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 239, 232, 0.82);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.gws-nav__btn-signin:hover {
  color: var(--gws-fg-on-dark-primary);
  background-color: rgba(245, 239, 232, 0.08);
  text-decoration: none;
}

.gws-nav__btn-trial {
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gws-brand-primary);
  background-color: var(--gws-accent-aa-on-dark);
  border-radius: var(--gws-radius-card);
  text-decoration: none;
  transition: background-color 0.15s ease;
  white-space: nowrap;
  border: none;
}

.gws-nav__btn-trial:hover {
  background-color: #F09060;
  text-decoration: none;
}

/* Hamburger */
.gws-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: auto;
}

.gws-nav__hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--gws-fg-on-dark-primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gws-nav__hamburger[aria-expanded="true"] .gws-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gws-nav__hamburger[aria-expanded="true"] .gws-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.gws-nav__hamburger[aria-expanded="true"] .gws-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.gws-nav__mobile {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background-color: var(--gws-bg-dark);
  border-top: 1px solid rgba(245, 239, 232, 0.1);
  border-bottom: 1px solid rgba(245, 239, 232, 0.1);
  padding: 16px clamp(20px, 4vw, 40px) 20px;
}

.gws-nav__mobile.gws-nav__mobile--open {
  display: block;
}

.gws-nav__mobile-link {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--gws-fg-on-dark-primary);
  border-bottom: 1px solid rgba(245, 239, 232, 0.08);
  text-decoration: none;
}

.gws-nav__mobile-link:last-child {
  border-bottom: none;
}

.gws-nav__mobile-link:hover {
  color: var(--gws-accent-aa-on-dark);
  text-decoration: none;
}

.gws-nav__mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 239, 232, 0.1);
}

@media (max-width: 860px) {
  .gws-nav__links,
  .gws-nav__actions {
    display: none;
  }
  .gws-nav__hamburger {
    display: flex;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.gws-footer {
  background-color: var(--gws-bg-dark);
  color: var(--gws-fg-on-dark-secondary);
}

.gws-footer__main {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 40px) 48px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 48px;
}

.gws-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gws-footer__logo img {
  height: 26px;
  width: auto;
}

.gws-footer__tagline {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gws-fg-on-dark-secondary);
}

.gws-footer__col-title {
  font-family: var(--gws-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-fg-on-dark-secondary);
  margin-bottom: 16px;
}

.gws-footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gws-footer__col-link {
  font-size: 14px;
  color: rgba(245, 239, 232, 0.65);
  text-decoration: none;
  transition: color 0.15s ease;
}

.gws-footer__col-link:hover {
  color: var(--gws-fg-on-dark-primary);
  text-decoration: none;
}

.gws-footer__bottom {
  border-top: 1px solid rgba(245, 239, 232, 0.1);
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gws-footer__copyright {
  font-size: 13px;
  color: rgba(245, 239, 232, 0.45);
}

.gws-footer__bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gws-footer__bottom-link {
  font-size: 13px;
  color: rgba(245, 239, 232, 0.45);
  text-decoration: none;
  transition: color 0.15s ease;
}

.gws-footer__bottom-link:hover {
  color: rgba(245, 239, 232, 0.8);
  text-decoration: none;
}

.gws-footer__contact-info {
  font-size: 13px;
  color: rgba(245, 239, 232, 0.5);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gws-footer__contact-link {
  color: rgba(245, 239, 232, 0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}

.gws-footer__contact-link:hover {
  color: var(--gws-fg-on-dark-primary);
  text-decoration: none;
}

@media (max-width: 860px) {
  .gws-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

@media (max-width: 540px) {
  .gws-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   Cookie Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--gws-bg-dark-alt);
  border-top: 1px solid rgba(245, 239, 232, 0.12);
  padding: 0;
}

.cookie-banner__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  color: var(--gws-fg-on-dark-secondary);
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--gws-accent-aa-on-dark);
  text-decoration: underline;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--gws-radius-card);
  cursor: pointer;
  transition: background-color 0.15s ease;
  font-family: var(--gws-font-body);
}

.cookie-banner__btn--primary {
  background-color: var(--gws-accent-aa-on-dark);
  color: var(--gws-brand-primary);
}

.cookie-banner__btn--primary:hover {
  background-color: #F09060;
}

/* ============================================================
   Cards
   ============================================================ */
.gws-card {
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: var(--gws-radius-card);
  box-shadow: var(--gws-shadow-warm);
  padding: 28px;
}

.gws-card--on-cream {
  background-color: var(--gws-bg-light);
}

.gws-card--on-dark {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 239, 232, 0.1);
}

/* ============================================================
   Feature card (features grid)
   ============================================================ */
.gws-feature-card {
  background-color: var(--gws-bg-light);
  border: 1px solid rgba(26, 21, 16, 0.07);
  border-radius: var(--gws-radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gws-feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--gws-radius-card);
  background-color: rgba(196, 98, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gws-feature-card__icon i {
  font-size: 18px;
  color: var(--gws-accent-aa-on-light);
}

.gws-feature-card__title {
  font-family: var(--gws-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
}

.gws-feature-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gws-fg-on-light-secondary);
}

/* ============================================================
   Blog card
   ============================================================ */
.gws-blog-card {
  background-color: var(--gws-bg-light);
  border: 1px solid rgba(26, 21, 16, 0.07);
  border-radius: var(--gws-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.gws-blog-card:hover {
  box-shadow: var(--gws-shadow-warm-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.gws-blog-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--gws-bg-cream);
}

.gws-blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gws-blog-card:hover .gws-blog-card__cover img {
  transform: scale(1.03);
}

.gws-blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gws-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gws-blog-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--gws-radius-tag);
  background-color: rgba(196, 98, 45, 0.1);
  color: var(--gws-accent-aa-on-light);
}

.gws-blog-card__date {
  font-size: 12px;
  color: var(--gws-fg-on-light-secondary);
  font-family: var(--gws-font-mono);
}

.gws-blog-card__read-time {
  font-size: 12px;
  color: var(--gws-fg-on-light-secondary);
}

.gws-blog-card__title {
  font-family: var(--gws-font-heading);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gws-fg-on-light-primary);
}

.gws-blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gws-fg-on-light-secondary);
}

.gws-blog-card__author {
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 21, 16, 0.07);
}

/* ============================================================
   Testimonial card
   ============================================================ */
.gws-testimonial-card {
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: var(--gws-radius-card);
  box-shadow: var(--gws-shadow-warm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gws-testimonial-card__quote {
  font-family: var(--gws-font-heading);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gws-fg-on-light-primary);
}

.gws-testimonial-card__quote::before {
  content: '\201C';
  color: var(--gws-accent-clay);
  font-size: 28px;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 4px;
}

.gws-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gws-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--gws-bg-cream);
}

.gws-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gws-testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
}

.gws-testimonial-card__role {
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
}

/* ============================================================
   Integration logo badges
   ============================================================ */
.gws-integration-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background-color: var(--gws-bg-light);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: var(--gws-radius-card);
  font-size: 14px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-integration-badge__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(196, 98, 45, 0.1);
  border-radius: 4px;
  flex-shrink: 0;
}

.gws-integration-badge__icon i {
  font-size: 15px;
  color: var(--gws-accent-aa-on-light);
}

/* ============================================================
   Form elements
   ============================================================ */
.gws-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gws-label-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--gws-font-body);
  font-size: 15px;
  color: var(--gws-fg-on-light-primary);
  background-color: var(--gws-bg-white);
  border: 1.5px solid rgba(26, 21, 16, 0.2);
  border-radius: var(--gws-radius-input);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.gws-input:focus {
  border-color: var(--gws-accent-clay);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.12);
}

.gws-input::placeholder {
  color: rgba(26, 21, 16, 0.35);
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.gws-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26, 21, 16, 0.1);
  border-radius: var(--gws-radius-card);
  overflow: hidden;
}

.gws-faq-item {
  border-bottom: 1px solid rgba(26, 21, 16, 0.08);
}

.gws-faq-item:last-child {
  border-bottom: none;
}

.gws-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--gws-bg-white);
  border: none;
  text-align: left;
  font-family: var(--gws-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.gws-faq-item__question:hover {
  background-color: var(--gws-bg-light);
}

.gws-faq-item__question[aria-expanded="true"] {
  color: var(--gws-accent-aa-on-light);
}

.gws-faq-item__icon {
  font-size: 12px;
  color: var(--gws-fg-on-light-secondary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gws-faq-item__question[aria-expanded="true"] .gws-faq-item__icon {
  transform: rotate(180deg);
}

.gws-faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  background-color: var(--gws-bg-white);
}

.gws-faq-item__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gws-fg-on-light-secondary);
}

.gws-faq-item__answer--open {
  display: block;
}

/* ============================================================
   Changelog entry
   ============================================================ */
.gws-changelog-entry {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(26, 21, 16, 0.08);
}

.gws-changelog-entry:last-child {
  border-bottom: none;
}

.gws-changelog-entry__left {
  padding-top: 4px;
}

.gws-changelog-entry__date {
  font-family: var(--gws-font-mono);
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 8px;
}

.gws-changelog-entry__tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--gws-radius-tag);
  font-family: var(--gws-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gws-changelog-entry__tag--new {
  background-color: rgba(196, 98, 45, 0.12);
  color: var(--gws-accent-aa-on-light);
}

.gws-changelog-entry__tag--improved {
  background-color: rgba(61, 43, 26, 0.1);
  color: var(--gws-brand-warm-mid);
}

.gws-changelog-entry__tag--fixed {
  background-color: rgba(92, 74, 58, 0.1);
  color: #4A3828;
}

.gws-changelog-entry__title {
  font-family: var(--gws-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 10px;
}

.gws-changelog-entry__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 600px) {
  .gws-changelog-entry {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}

/* ============================================================
   Comparison section (differentiator)
   ============================================================ */
.gws-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.gws-comparison__col {
  border-radius: var(--gws-radius-card);
  padding: 28px;
}

.gws-comparison__col--left {
  background-color: rgba(92, 74, 58, 0.06);
  border: 1px solid rgba(92, 74, 58, 0.12);
}

.gws-comparison__col--right {
  background-color: rgba(196, 98, 45, 0.06);
  border: 1px solid rgba(196, 98, 45, 0.15);
}

.gws-comparison__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gws-comparison__col--left .gws-comparison__label {
  color: var(--gws-fg-on-light-secondary);
}

.gws-comparison__col--right .gws-comparison__label {
  color: var(--gws-accent-aa-on-light);
}

.gws-comparison__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gws-comparison__item {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gws-fg-on-light-secondary);
}

.gws-comparison__col--right .gws-comparison__item {
  color: var(--gws-fg-on-light-primary);
}

.gws-comparison__item::before {
  content: '×';
  flex-shrink: 0;
  color: rgba(92, 74, 58, 0.5);
  font-size: 14px;
  margin-top: 1px;
}

.gws-comparison__col--right .gws-comparison__item::before {
  content: '✓';
  color: var(--gws-accent-aa-on-light);
}

@media (max-width: 640px) {
  .gws-comparison {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Step flow (how it works mechanism section)
   ============================================================ */
.gws-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.gws-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 98, 45, 0.3), transparent);
}

.gws-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.gws-step__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(196, 98, 45, 0.1);
  border: 2px solid rgba(196, 98, 45, 0.2);
  position: relative;
  z-index: 1;
}

.gws-step__icon-wrap i {
  font-size: 20px;
  color: var(--gws-accent-aa-on-light);
}

.gws-step__number {
  font-family: var(--gws-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gws-accent-aa-on-light);
  text-transform: uppercase;
}

.gws-step__label {
  font-family: var(--gws-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  line-height: 1.3;
}

.gws-step__detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 700px) {
  .gws-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gws-steps::before {
    display: none;
  }
}

/* ============================================================
   Sub-page hero
   ============================================================ */
.gws-subhero {
  padding-top: 72px;
  padding-bottom: 64px;
}

.gws-subhero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-subhero__content {
  max-width: 640px;
}

/* ============================================================
   Pricing cards
   ============================================================ */
.gws-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.gws-pricing-card {
  background-color: var(--gws-bg-light);
  border: 1.5px solid rgba(26, 21, 16, 0.1);
  border-radius: var(--gws-radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.gws-pricing-card--highlight {
  border-color: var(--gws-accent-clay);
  background-color: var(--gws-bg-white);
  box-shadow: 0 4px 24px rgba(196, 98, 45, 0.12);
}

.gws-pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background-color: var(--gws-accent-clay);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--gws-radius-card) var(--gws-radius-card);
}

.gws-pricing-card__name {
  font-family: var(--gws-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
}

.gws-pricing-card__tagline {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
  margin-top: -16px;
}

.gws-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.gws-pricing-card__amount {
  font-family: var(--gws-font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  line-height: 1;
}

.gws-pricing-card__amount::before {
  content: '$';
  font-size: 20px;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.gws-pricing-card__unit {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
}

.gws-pricing-card__annual-note {
  font-size: 12px;
  color: var(--gws-fg-on-light-secondary);
  margin-top: -16px;
}

.gws-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gws-pricing-card__feature {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
  line-height: 1.45;
}

.gws-pricing-card__feature::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--gws-accent-aa-on-light);
  font-weight: 600;
}

.gws-pricing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: var(--gws-radius-card);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--gws-accent-aa-on-light);
  color: #FFFFFF;
  transition: background-color 0.15s ease;
}

.gws-pricing-card__cta:hover {
  background-color: #8C4218;
  text-decoration: none;
}

.gws-pricing-card--highlight .gws-pricing-card__cta {
  background-color: var(--gws-accent-clay);
}

.gws-pricing-card--highlight .gws-pricing-card__cta:hover {
  background-color: #A34E1F;
}

.gws-pricing-enterprise {
  border: 1.5px dashed rgba(26, 21, 16, 0.15);
  border-radius: var(--gws-radius-card);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background-color: var(--gws-bg-light);
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gws-pricing-enterprise__name {
  font-family: var(--gws-font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-pricing-enterprise__tagline {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 640px) {
  .gws-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Article body (blog posts)
   ============================================================ */
body.gws-page--light-top .gws-article-body h1,
body.gws-page--light-top .gws-article-body h2,
body.gws-page--light-top .gws-article-body h3 {
  font-family: var(--gws-font-heading);
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 0.6em;
}

body.gws-page--light-top .gws-article-body h2 {
  font-size: 26px;
  font-weight: 500;
  margin-top: 48px;
}

body.gws-page--light-top .gws-article-body h3 {
  font-size: 19px;
  font-weight: 600;
  margin-top: 32px;
}

body.gws-page--light-top .gws-article-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 1.4em;
}

body.gws-page--light-top .gws-article-body ul,
body.gws-page--light-top .gws-article-body ol {
  margin-left: 20px;
  margin-bottom: 1.4em;
}

body.gws-page--light-top .gws-article-body li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 0.5em;
  list-style: disc;
}

body.gws-page--light-top .gws-article-body ol li {
  list-style: decimal;
}

body.gws-page--light-top .gws-article-body a {
  color: var(--gws-accent-aa-on-light);
  text-decoration: underline;
}

body.gws-page--light-top .gws-article-body code {
  font-family: var(--gws-font-mono);
  font-size: 0.9em;
  background-color: rgba(196, 98, 45, 0.08);
  color: var(--gws-accent-aa-on-light);
  padding: 2px 6px;
  border-radius: 3px;
}

body.gws-page--light-top .gws-article-body blockquote {
  border-left: 3px solid var(--gws-accent-clay);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--gws-font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--gws-fg-on-light-primary);
}

/* Legal article */
.legal-article {
  max-width: var(--gws-content-max);
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 40px;
}

.legal-header h1 {
  font-family: var(--gws-font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
}

.legal-article section {
  margin-bottom: 36px;
}

.legal-article h2 {
  font-family: var(--gws-font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(26, 21, 16, 0.08);
}

.legal-article h3 {
  font-family: var(--gws-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-article p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 1em;
}

.legal-article ul,
.legal-article ol {
  margin: 12px 0 12px 24px;
}

.legal-article li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 6px;
  list-style: disc;
}

.legal-article ol li {
  list-style: decimal;
}

.legal-article address {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-secondary);
}

.legal-article a {
  color: var(--gws-accent-aa-on-light);
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid rgba(26, 21, 16, 0.1);
  color: var(--gws-fg-on-light-secondary);
}

.legal-table th {
  background-color: var(--gws-bg-cream);
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
}

/* ============================================================
   Auth pages (login/signup/reset)
   ============================================================ */
.gws-auth-page {
  min-height: 100vh;
  background-color: var(--gws-bg-light);
  display: flex;
  flex-direction: column;
}

.gws-auth-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.gws-auth-card {
  width: 100%;
  max-width: 420px;
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(26, 21, 16, 0.1);
  border-radius: var(--gws-radius-card);
  box-shadow: 0 4px 32px rgba(26, 21, 16, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gws-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.gws-auth-card__logo img {
  height: 28px;
  width: auto;
  filter: invert(1);
}

.gws-auth-card__heading {
  font-family: var(--gws-font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  text-align: center;
}

.gws-auth-card__subhead {
  font-size: 15px;
  color: var(--gws-fg-on-light-secondary);
  text-align: center;
  margin-top: -12px;
}

.gws-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gws-auth-submit {
  width: 100%;
  padding: 13px;
  background-color: var(--gws-accent-aa-on-light);
  color: #FFFFFF;
  border: none;
  border-radius: var(--gws-radius-card);
  font-family: var(--gws-font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.gws-auth-submit:hover {
  background-color: #8C4218;
}

.gws-auth-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.gws-auth-link {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
  text-decoration: none;
}

.gws-auth-link span {
  color: var(--gws-accent-aa-on-light);
  font-weight: 500;
}

.gws-auth-link:hover span {
  text-decoration: underline;
}

/* Fade-in animation */
.gws-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gws-fade-in.gws-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Cookie banner BEM modifier class
   ============================================================ */
.cookie-banner--notice {
  /* notice-only model: single "Got it" button — no layout changes needed beyond base */
}

/* ============================================================
   Missing utility / wrapper classes
   ============================================================ */
.gws-value-item {
  /* wrapper for individual value item — content styled by child classes */
}

.gws-hero__text {
  /* text column inside hero grid — inherits flex column layout from parent */
}
