/* ── Greencom C+F v2 — Page Styles ── */

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  flex-shrink: 0;
  width: 140px;
  height: 33px;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--ink);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-login {
  display: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-900);
  color: var(--on-dark);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
}

.header-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 40px var(--gutter);
  flex-direction: column;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.mobile-nav a.btn--primary {
  color: var(--on-dark);
}

/* ── Hero ── */

.hero {
  position: relative;
  height: 720px;
  background-color: var(--forest-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 56px;
  left: max(56px, calc((100% - var(--container)) / 2 + var(--gutter)));
  width: 560px;
  background: var(--forest-overlay);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-family: var(--font-hero);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-green);
}

.hero-title {
  font-family: var(--font-hero);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  margin: 0;
}

.hero-desc {
  font-family: var(--font-hero);
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream);
  margin: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--forest-900);
  border-radius: 999px;
  height: 44px;
  padding: 0 22px;
  font-family: var(--font-hero);
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
}

.hero-btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hero);
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.hero-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

/* ── Logo Strip ── */

.logo-strip {
  background: var(--forest-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.logo-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.logo-strip__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  flex-shrink: 0;
}

.logo-strip__items {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-strip__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.logo-strip__name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Partner / Pillars Section ── */

.pillars {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.pillars__header {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 64px;
}

.pillars__header-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillars__header-right {
  flex: 0.7;
  padding-top: 40px;
}

.pillars__header-right p {
  font-size: 16px;
  line-height: 1.625;
  color: var(--ink-muted);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(14, 58, 46, 0.1);
  border-color: rgba(14, 58, 46, 0.2);
}

.pillar-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--forest-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease;
}

.pillar-card:hover .pillar-card__icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--forest-800);
}

.pillar-card__icon svg {
  width: 20px;
  height: 20px;
}

.pillar-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
}

.pillar-card__desc {
  font-size: 14px;
  line-height: 1.57;
  color: var(--ink-muted);
}

/* ── Pricing / Abonnemang ── */

.pricing-band {
  background: var(--forest-900);
}

.pricing {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 640px;
  display: flex;
  overflow: hidden;
}

.pricing__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.pricing__content {
  margin-left: auto;
  width: 50%;
  padding: 80px 0 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

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

.pricing__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}

.pricing__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: -0.01em;
  color: var(--on-dark);
}

.pricing__desc {
  font-size: 14px;
  line-height: 1.57;
  color: var(--on-dark-muted);
}

.pricing__cards {
  display: flex;
  gap: 16px;
}

.pricing-card {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              background 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-card--featured {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(198, 242, 78, 0.2);
}

.pricing-card--featured:hover {
  border-color: rgba(198, 242, 78, 0.4);
  background: rgba(255, 255, 255, 0.09);
}

.pricing-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card--featured .pricing-card__label {
  color: var(--lime);
}

.pricing-card__label-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card__badge {
  border: 1px solid rgba(198, 242, 78, 0.3);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--lime);
}

.pricing-card__price {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--on-dark);
}

.pricing-card--featured .pricing-card__price {
  color: var(--lime);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Strengths / FAQ ── */

.strengths {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.strengths__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.strengths__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.strengths__desc {
  font-size: 16px;
  line-height: 1.625;
  color: var(--ink-muted);
  max-width: 440px;
}

.strengths__right {
  flex: 1.1;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s;
}

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

.faq-item:hover {
  color: var(--forest-900);
}

.faq-item__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.25s ease;
}

.faq-item:hover .faq-item__title {
  transform: translateX(4px);
}

.faq-item__icon {
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.25s ease;
}

.faq-item:hover .faq-item__icon {
  transform: rotate(90deg);
  color: var(--forest-900);
}

/* ── Process ── */

.process {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.process__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin-bottom: 64px;
}

.process__header p {
  font-size: 16px;
  line-height: 1.625;
  color: var(--ink-muted);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(14, 58, 46, 0.08);
  border-color: rgba(14, 58, 46, 0.15);
}

.process-card--active {
  background: var(--forest-900);
  border-color: var(--forest-900);
}

.process-card--active:hover {
  box-shadow: 0 16px 48px rgba(14, 58, 46, 0.3);
  border-color: var(--forest-800);
}

.process-card__num {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--border);
}

.process-card--active .process-card__num {
  color: rgba(198, 242, 78, 0.3);
}

.process-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.process-card--active .process-card__title {
  color: var(--on-dark);
}

.process-card__desc {
  font-size: 14px;
  line-height: 1.57;
  color: var(--ink-muted);
}

.process-card--active .process-card__desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Testimonial ── */

.testimonial {
  background: var(--forest-900);
  padding: var(--section-pad) 0;
}

.testimonial__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.testimonial__eyebrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonial__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.testimonial__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.testimonial__quote {
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 780px;
  margin: 0;
}

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

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark);
}

.testimonial__role {
  font-size: 12px;
  color: var(--on-dark-dim);
}

/* ── CTA Section ── */

.cta-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.cta-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.cta-section__left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-section__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-section__desc {
  font-size: 16px;
  line-height: 1.625;
  color: var(--ink-muted);
  max-width: 500px;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-section__right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 44px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

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

.contact-item__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.contact-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.contact-item__sub {
  font-size: 12px;
  color: var(--ink-muted);
}

/* ── Footer ── */

.site-footer {
  background: var(--forest-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
}

.footer-main {
  display: flex;
  gap: 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-brand {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 140px;
  height: 33px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand__desc {
  font-size: 14px;
  line-height: 1.57;
  color: var(--on-dark-dim);
  max-width: 280px;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--on-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 64px auto 0;
  padding: 32px var(--gutter) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom__links {
  display: flex;
  gap: 24px;
}

.footer-bottom__links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-bottom__links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Responsive: Tablet (1024px) ── */

@media (max-width: 1024px) {
  .header-nav {
    display: none !important;
  }

  .header-login {
    display: none !important;
  }

  .header-cta {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: 520px;
  }

  .hero-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .logo-strip__inner {
    flex-direction: column;
    gap: 16px;
  }

  .logo-strip__items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .pillars__header {
    flex-direction: column;
    gap: 24px;
  }

  .pillars__header-right {
    padding-top: 0;
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing {
    flex-direction: column;
    min-height: auto;
  }

  .pricing__image {
    position: relative;
    width: 100%;
    height: 360px;
  }

  .pricing__content {
    margin-left: 0;
    width: 100%;
    padding: 56px 40px;
  }

  .container.strengths__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .strengths__left {
    padding: 0 var(--gutter);
  }

  .faq-item {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-section__inner {
    flex-direction: column;
    gap: 48px;
  }

  .cta-section__right {
    padding-top: 0;
  }

  .footer-main {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-brand {
    flex-basis: 100%;
  }
}

/* ── Responsive: Desktop nav show ── */

@media (min-width: 1025px) {
  .header-nav {
    display: flex;
  }

  .header-login {
    display: block;
  }

  .menu-toggle {
    display: none;
  }
}

/* ── Responsive: Mobile (640px) ── */

@media (max-width: 640px) {
  .hero-overlay {
    padding: 32px 20px;
    gap: 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .pricing__cards {
    flex-direction: column;
  }

  .pricing__content {
    padding: 40px 20px;
  }

  .pricing__title {
    font-size: 28px;
  }

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

  .testimonial__quote {
    font-size: 20px;
  }

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

  .footer-main {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
