/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gph-green);
  color: var(--white);
  border-color: var(--gph-green);
}

.btn--primary:hover {
  background: #4a7228;
  border-color: #4a7228;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(87, 134, 49, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--gph-green);
  border-color: var(--gph-green);
}

.btn--secondary:hover {
  background: var(--gph-mint);
  color: var(--gph-green);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--gph-green);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--gph-mint);
  border-color: var(--gph-mint);
  color: var(--gph-green);
  transform: translateY(-1px);
}

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

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

.btn--lg {
  font-size: 1.1rem;
  padding: 18px 36px;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gph-light);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gph-green);
  text-decoration: none;
}

.nav__logo-text span {
  color: var(--gph-bright);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gph-dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gph-green);
  background: var(--gph-mint);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__phone {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gph-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__phone:hover {
  color: var(--gph-green);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gph-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gph-dark);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border-bottom: 1px solid var(--gph-light);
  transition: all var(--transition);
}

.nav__mobile a:visited {
  color: var(--gph-dark);
}

.nav__mobile a:hover {
  background: var(--gph-mint);
  color: var(--gph-green);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--gph-dark) 0%, #2a3330 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(130, 189, 71, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(130, 189, 71, 0.15);
  border: 1px solid rgba(130, 189, 71, 0.3);
  color: var(--gph-bright);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title .accent {
  color: var(--gph-bright);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}

.hero__trust-item svg,
.hero__trust-item .icon {
  color: var(--gph-bright);
  flex-shrink: 0;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--gph-green);
  padding: 24px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-bar__item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stats-bar__item:last-child {
  border-right: none;
}

.stats-bar__value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--white);
  display: block;
}

.stats-bar__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 2px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--gph-mint);
  border-top: 1px solid rgba(87, 134, 49, 0.2);
  border-bottom: 1px solid rgba(87, 134, 49, 0.2);
  padding: 20px 0;
}

.trust-bar .hero__trust-item {
  color: var(--gph-dark);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-bar__text {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gph-dark);
}

.trust-bar__logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gph-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== CALCULATOR ========== */
.calculator {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  border: 1px solid var(--gph-light);
}

.calculator__header {
  text-align: center;
  margin-bottom: 40px;
}

.calculator__controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.calculator__field label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gph-dark);
  margin-bottom: 8px;
}

.calculator__value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gph-green);
  margin-bottom: 8px;
  display: block;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--gph-light);
  border-radius: 3px;
  outline: none;
}

input[type="range"]:focus-visible {
  outline: 3px solid rgba(87, 134, 49, 0.4);
  outline-offset: 4px;
  border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gph-green);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(87,134,49,0.4);
  transition: transform var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gph-green);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(87,134,49,0.4);
}

.calculator__results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  background: var(--gph-mint);
  border-radius: var(--radius-md);
  padding: 32px;
}

.calculator__result-item {
  text-align: center;
}

.calculator__result-label {
  font-size: 0.8rem;
  color: var(--gph-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.calculator__result-value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--gph-dark);
  display: block;
}

.calculator__result-value.savings {
  color: var(--gph-green);
  font-size: 2rem;
}

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

.calculator__disclaimer {
  font-size: 0.75rem;
  color: var(--gph-grey);
  text-align: center;
  margin-top: 12px;
}

/* ========== PILLARS / FEATURES ========== */
.pillar-card {
  background: var(--white);
  border: 1px solid var(--gph-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.pillar-card:hover {
  border-color: var(--gph-bright);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pillar-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gph-mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.pillar-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gph-dark);
}

.pillar-card__text {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gph-bright) 0,
    var(--gph-bright) 8px,
    transparent 8px,
    transparent 16px
  );
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  background: var(--gph-green);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(87,134,49,0.3);
}

.step__title {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gph-dark);
}

.step__text {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gph-light);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--gph-bright);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--gph-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: var(--gph-green);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gph-dark);
  display: block;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--gph-grey);
  display: block;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.star {
  color: #f59e0b;
  font-size: 1rem;
}

/* ========== PRICING CARDS ========== */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gph-light);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--gph-green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gph-green);
  box-shadow: var(--shadow-md);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gph-green);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--gph-dark);
}

.pricing-card__rate {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--gph-green);
  margin-bottom: 8px;
}

.pricing-card__rate span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gph-grey);
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 24px;
  min-height: 48px;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #4a5568;
  padding: 6px 0;
  border-bottom: 1px solid var(--gph-light);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features .check {
  color: var(--gph-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== FAQ ========== */
.faq-item {
  border: 1px solid var(--gph-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gph-dark);
  background: var(--white);
  border: none;
  transition: background var(--transition);
  gap: 16px;
}

.faq-item__question:focus-visible {
  outline: 3px solid rgba(87, 134, 49, 0.4);
  outline-offset: -3px;
}

.faq-item__question:hover {
  background: var(--gph-mint);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gph-mint);
  color: var(--gph-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.925rem;
  color: #4a5568;
  line-height: 1.7;
  border-top: 1px solid var(--gph-light);
  padding-top: 16px;
}

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

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gph-dark);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gph-light);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus,
.form-control:focus-visible {
  border-color: var(--gph-green);
  outline: 3px solid rgba(87, 134, 49, 0.4);
  outline-offset: 2px;
}

.form-control.error {
  border-color: #ef4444;
}

.form-control::placeholder {
  color: #9ca3af;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 4px;
}

.form-success {
  background: var(--gph-mint);
  border: 1px solid var(--gph-bright);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--gph-dark);
  font-weight: 500;
  display: none;
}

.form-success.visible {
  display: block;
}

.file-upload {
  border: 2px dashed var(--gph-light);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.file-upload:hover,
.file-upload.dragover {
  border-color: var(--gph-green);
  background: var(--gph-mint);
}

.file-upload input[type="file"] {
  display: none;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--gph-green) 0%, #3d6b1f 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2, .cta-section p {
  color: var(--white);
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 16px auto 40px;
  max-width: 560px;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gph-dark);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  max-width: 1000px;
  aspect-ratio: 5618 / 1979;
  background: url('../images/logos/GoPayhawk Full_Black logo.png') center / contain no-repeat;
  filter: invert(1);
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: block;
  margin-bottom: 16px;
}

.footer__logo img {
  height: 36px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--gph-green);
  color: var(--white);
}

.footer__col-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gph-bright);
  margin-bottom: 20px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

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

.footer__legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

.footer__partner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__partner strong {
  color: rgba(255,255,255,0.6);
}

/* ========== PAGE HERO (non-homepage) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--gph-dark) 0%, #2a3330 100%);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  max-width: 1000px;
  aspect-ratio: 5618 / 1979;
  background: url('../images/logos/GoPayhawk Full_Black logo.png') center / contain no-repeat;
  filter: invert(1);
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
}

.page-hero__eyebrow {
  display: inline-block;
  background: rgba(130, 189, 71, 0.15);
  border: 1px solid rgba(130, 189, 71, 0.3);
  color: var(--gph-bright);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

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

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== INDUSTRY CARD ========== */
.industry-card {
  background: var(--white);
  border: 1px solid var(--gph-light);
  border-radius: var(--radius-md);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  border-color: var(--gph-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: inherit;
}

.industry-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.industry-card__title {
  font-size: 1.15rem;
  color: var(--gph-dark);
  margin-bottom: 10px;
}

.industry-card__text {
  font-size: 0.9rem;
  color: #6b7280;
  flex: 1;
  margin-bottom: 20px;
}

.industry-card__link {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gph-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  padding: 12px 16px;
  background: var(--gph-dark);
  color: var(--white);
}

.comparison-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gph-light);
  color: #4a5568;
}

.comparison-table tr:nth-child(even) td {
  background: #f8faf5;
}

.comparison-table tr:hover td {
  background: var(--gph-mint);
}

.comparison-table .check { color: var(--gph-green); font-weight: 700; }
.comparison-table .cross { color: #9ca3af; }

/* ========== PRICING FINDER ========== */
.finder-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.finder-btn {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--gph-light);
  border-radius: 100px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gph-dark);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.finder-btn:hover,
.finder-btn.active {
  background: var(--gph-green);
  border-color: var(--gph-green);
  color: var(--white);
}

/* ========== TEAM CARDS ========== */
.team-card {
  text-align: center;
}

.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gph-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--gph-green);
  margin: 0 auto 16px;
}

.team-card__name {
  font-size: 1.1rem;
  color: var(--gph-dark);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.875rem;
  color: var(--gph-grey);
}

/* ========== CONTACT INFO ========== */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--gph-mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gph-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.contact-info-item__value {
  font-size: 1rem;
  color: var(--gph-dark);
  font-weight: 500;
}

/* ========== NOTICE / ALERT ========== */
.notice {
  display: flex;
  gap: 16px;
  background: var(--gph-mint);
  border: 1px solid rgba(87,134,49,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 32px;
}

.notice__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.notice__text {
  font-size: 0.9rem;
  color: var(--gph-dark);
  line-height: 1.6;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.3);
}

/* ========== NAV DROPDOWN ========== */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-toggle .chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav__item--dropdown:hover .chevron,
.nav__item--dropdown.open .chevron {
  transform: rotate(180deg);
}

/* Hidden by default — shown on hover or .open */
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gph-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 500;
  list-style: none;
}

.nav__item--dropdown.open .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu li { list-style: none; }

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gph-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown-menu a:hover {
  background: var(--gph-mint);
  color: var(--gph-green);
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--gph-light);
  margin: 6px 0;
}

.nav__dropdown-highlight a {
  color: var(--gph-green);
  font-weight: 600;
}

/* Mobile nav sub-items */
.nav__mobile-sub {
  padding-left: 32px !important;
  font-size: 0.95rem !important;
  color: var(--gph-grey) !important;
}

.nav__mobile-sub:hover {
  color: var(--gph-green) !important;
}

/* Scroll animation — applied by IntersectionObserver in main.js */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ========== HERO GRID (two-column hero) ========== */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ========== SAVINGS CARD (hero visual) ========== */
.savings-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
}

.savings-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gph-green), var(--gph-bright));
}

.savings-card__header {
  background: #2a3330;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.savings-card__header-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.savings-card__free-badge {
  background: var(--gph-bright);
  color: #1a2e0a;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.savings-card__merchant {
  padding: 14px 24px;
  border-bottom: 1px solid var(--gph-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.savings-card__merchant-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gph-dark);
}

.savings-card__merchant-vol {
  font-size: 0.8rem;
  color: var(--gph-grey);
}

.savings-card__savings {
  padding: 20px 24px;
  text-align: center;
  background: var(--gph-mint);
  border-bottom: 1px solid rgba(87,134,49,0.2);
}

.savings-card__savings-label {
  font-size: 0.7rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gph-green);
  display: block;
  margin-bottom: 4px;
}

.savings-card__savings-amount {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--gph-green);
  display: block;
  line-height: 1;
}

.savings-card__savings-period {
  font-size: 0.8rem;
  color: var(--gph-grey);
  margin-top: 4px;
  display: block;
}

.savings-card__breakdown {
  padding: 14px 24px;
  border-bottom: 1px solid var(--gph-light);
}

.savings-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.875rem;
  color: #4a5568;
}

.savings-card__row-old {
  color: #ef4444;
  text-decoration: line-through;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
}

.savings-card__row-new {
  color: var(--gph-green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
}

.savings-card__row--total {
  border-top: 1px solid var(--gph-light);
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 600;
  color: var(--gph-dark);
}

.savings-card__row--total-value {
  color: var(--gph-green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.savings-card__footer {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  color: var(--gph-grey);
  background: #f8faf5;
}

/* ========== TRUST STRIP (card networks + compliance) ========== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gph-light);
  border-bottom: 1px solid var(--gph-light);
  padding: 18px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-strip__label {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gph-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.trust-strip__networks {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-strip__network {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  font-family: 'Exo 2', sans-serif;
}

.trust-strip__network--visa  { color: #1a1f71; }
.trust-strip__network--mc    { color: #eb001b; }
.trust-strip__network--amex  { color: #006fcf; }
.trust-strip__network--disc  { color: #e05a1a; }

.trust-strip__divider {
  display: inline-block;
  width: 1px;
  height: 22px;
  background: var(--gph-light);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--gph-grey);
  white-space: nowrap;
}

/* ========== TRUST STRIP CARD LOGOS ========== */
.trust-strip__card-logo {
  height: 28px;
  max-height: 28px;
  width: auto;
  max-width: 80px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* ========== FOOTER CARD LOGOS ========== */
.footer__cards {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__card-logo {
  height: 22px;
  max-height: 22px;
  width: auto;
  max-width: 64px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.footer__card-logo:hover {
  opacity: 0.85;
}

/* ========== NAV MOBILE SECTION DIVIDER ========== */
.nav__mobile-divider {
  height: 1px;
  background: var(--gph-light);
  margin: 6px 16px;
}

/* ── Mobile nav accordion groups ── */
.nav__mobile-group {
  border-bottom: 1px solid var(--gph-light);
}

.nav__mobile-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gph-dark);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.nav__mobile-group-toggle:hover {
  background: var(--gph-mint);
  color: var(--gph-green);
}

.nav__mobile-group-toggle.open {
  color: var(--gph-green);
}

.nav__mobile-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav__mobile-group-toggle.open .nav__mobile-chevron {
  transform: rotate(180deg);
}

.nav__mobile-group-items {
  display: none !important;
  flex-direction: column;
  padding: 0 0 8px 0;
}

.nav__mobile-group-items.open {
  display: flex !important;
}

.nav__mobile-group-items a,
.nav__mobile-group-items a:link,
.nav__mobile-group-items a:visited {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gph-grey) !important;
  padding: 10px 16px 10px 28px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  transition: background var(--transition), color var(--transition);
}

.nav__mobile-group-items a:first-child,
.nav__mobile-group-items a:first-child:visited {
  font-weight: 600;
  color: var(--gph-dark) !important;
  font-size: 0.95rem;
}

.nav__mobile-group-items a:hover {
  background: var(--gph-mint);
  color: var(--gph-green) !important;
}
