/* ============================================
   GREENCLUES MEDIA — Stylesheet
   ============================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-900: #1a3c2a;
  --green-800: #1e4430;
  --green-700: #2d5a3d;
  --green-600: #3a7350;
  --green-500: #4a8c63;
  --green-100: #e8f0ea;
  --green-50: #f2f7f3;
  --green-25: #f7faf8;
  --white: #ffffff;
  --gray-900: #111111;
  --gray-700: #333333;
  --gray-600: #555555;
  --gray-500: #777777;
  --gray-400: #999999;
  --gray-300: #cccccc;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --container-max: 1350px;
  --header-h: 72px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Animations ---- */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays for cards */
.verticals__grid .animate-in:nth-child(2) {
  transition-delay: 0.08s;
}

.verticals__grid .animate-in:nth-child(3) {
  transition-delay: 0.16s;
}

.verticals__grid .animate-in:nth-child(4) {
  transition-delay: 0.24s;
}

.verticals__grid .animate-in:nth-child(5) {
  transition-delay: 0.32s;
}

.verticals__grid .animate-in:nth-child(6) {
  transition-delay: 0.40s;
}

.why-grid .animate-in:nth-child(2) {
  transition-delay: 0.08s;
}

.why-grid .animate-in:nth-child(3) {
  transition-delay: 0.16s;
}

.why-grid .animate-in:nth-child(4) {
  transition-delay: 0.24s;
}

.why-grid .animate-in:nth-child(5) {
  transition-delay: 0.32s;
}

.why-grid .animate-in:nth-child(6) {
  transition-delay: 0.40s;
}

.why-stats .animate-in:nth-child(2) {
  transition-delay: 0.1s;
}

.why-stats .animate-in:nth-child(3) {
  transition-delay: 0.2s;
}

.why-stats .animate-in:nth-child(4) {
  transition-delay: 0.3s;
}

.process-timeline .animate-in:nth-child(2) {
  transition-delay: 0.1s;
}

.process-timeline .animate-in:nth-child(3) {
  transition-delay: 0.2s;
}

.process-timeline .animate-in:nth-child(4) {
  transition-delay: 0.3s;
}

.process-timeline .animate-in:nth-child(5) {
  transition-delay: 0.4s;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  transition: height var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  height: 60px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green-800);
  color: var(--white);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray-900);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-700);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--green-800);
}

.nav-link:hover::after {
  width: 100%;
}

.header__cta {
  font-size: 11px;
  letter-spacing: .5px;
  padding: 8px 20px;
  background: var(--green-800);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--green-800);
  color: var(--white);
  padding: 14px 32px;
}

.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 60, 42, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--gray-900);
  padding: 14px 32px;
  border: 1.5px solid var(--gray-300);
}

.btn--outline:hover {
  border-color: var(--green-700);
  color: var(--green-800);
}

.btn--full {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--green-700);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.label-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--green-700);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.25;
}

.section-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 520px;
}

.section-header--split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.section-header--split>div:first-child {
  flex: none;
  max-width: 380px;
}

.section-header--split .section-desc {
  flex: 1;
  padding-top: 40px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: var(--header-h);
  padding-bottom: 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: var(--green-100);
  background-image:
    linear-gradient(rgba(45, 90, 61, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 90, 61, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
}

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

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
}

.hero__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 460px;
}

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

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.stat-card:first-child {
  background: var(--green-50);
}

.stat-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
}

.stat-card:nth-child(odd) {
  border-right: 1px solid var(--gray-200);
}

.stat-card:nth-child(n+3) {
  border-bottom: none;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--green-900);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
}

.hero__note {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  align-items: flex-start;
}

.hero__note p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 11px;
  color: var(--green-900);
  font: bold;
  transition: all var(--transition);
}

.tag:hover {
  border-color: var(--green-600);
  background: var(--green-50);
}

.cookie-note {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 24px;
  padding: 0 40px;
}

/* ============================================
   VERTICALS
   ============================================ */
.verticals {
  padding: 100px 0;
  background: var(--green-50);
}

.verticals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.vertical-card {
  padding: 40px 32px;
  color: var(--green-500);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}

.vertical-card:nth-child(3n) {
  border-right: none;
}

.vertical-card:nth-child(n+4) {
  border-bottom: none;
}

.vertical-card:hover {
  background: var(--green-25);
}

.vertical-card__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-300);
  margin-right: 12px;
  margin-bottom: 16px;
  vertical-align: middle;
}

.vertical-card__title {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
  vertical-align: middle;
}

.vertical-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--green-800);
  margin-bottom: 24px;
}

.vertical-card__desc::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--gray-300);
  margin-bottom: 16px;
  transition: width var(--transition), background-color var(--transition);
}

.vertical-card:hover .vertical-card__desc::before {
  width: 48px;
  background-color: var(--green-500);
}

.vertical-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vertical-card__list li {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--green-800);
  padding-left: 16px;
  position: relative;
}

.vertical-card__list li::before {
  content: '■';
  position: absolute;
  left: 0;
  font-size: 7px;
  top: 4px;
  color: var(--green-700);
}

/* Verticals CTA Bar */
.verticals__cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  margin-top: 60px;
  background: var(--green-100);
  border-radius: 8px;
}

.verticals__cta-content h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 4px;
}

.verticals__cta-content p {
  font-size: 14px;
  color: var(--gray-600);
}

/* ============================================
   HOW WE WORK
   ============================================ */
.how-we-work {
  padding: 100px 0;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  transition: background var(--transition);
}

.process-step:first-child {
  border-top: 1px solid var(--gray-200);
}

.process-step:hover {
  background: var(--green-50);
}

.process-step--highlight {
  background: var(--green-50);
}

.process-step__left {
  flex-shrink: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--green-700);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-800);
  font-weight: 500;
  background: var(--white);
}

.process-step__content {
  flex: 1;
}

.process-step__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--green-800);
  max-width: 560px;
}

.process-step__timeline {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-700);
  padding-top: 4px;
}

.process-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.process-cta span {
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   WHY GREENCLUES
   ============================================ */
.why-greenclues {
  padding: 100px 0;
  background: var(--green-50);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.why-card {
  padding: 40px 36px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}

.why-card:nth-child(2n) {
  border-right: none;
}

.why-card:nth-child(n+5) {
  border-bottom: none;
}

.why-card:hover {
  background: var(--green-25);
}

.why-card__divider {
  width: 24px;
  height: 1.5px;
  background: var(--gray-300);
  margin-bottom: 24px;
  transition: width var(--transition), background-color var(--transition);
}

.why-card:hover .why-card__divider {
  width: 48px;
  background: var(--green-500);
}

.why-card__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--green-800);
}

/* Why Stats */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.why-stat {
  padding: 32px;
  border-right: 1px solid var(--gray-200);
}

.why-stat:last-child {
  border-right: none;
}

.why-stat__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.why-stat__label {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-top: 20px;
  max-width: 420px;
}

/* What Happens Next */
.contact__next-steps {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--green-25);
}

.contact__next-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--green-800);
  margin-bottom: 20px;
}

.contact__steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__steps-list li {
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-700);
  font-weight: 500;
}

.contact__direct {
  margin-top: 36px;
}

.contact__direct-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.contact__email {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  transition: color var(--transition);
}

.contact__email:hover {
  color: var(--green-700);
}

/* Form */
.contact__form {
  background: var(--green-50);
  padding: 40px;
  border-radius: 12px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: var(--green-50);
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(74, 140, 99, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

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

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  margin-top: 100px;
  background: var(--green-50);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
}

.footer__tagline {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 340px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  color: var(--gray-600);
  transition: all var(--transition);
}

.social-icon:hover {
  border-color: var(--green-600);
  color: var(--green-800);
  background: var(--white);
}

.footer__links {
  display: flex;
  gap: 80px;
}

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

.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--green-800);
  margin-bottom: 8px;
}

.footer__col a {
  font-size: 14px;
  color: var(--gray-600);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--green-800);
}

.footer__bottom {
  border-top: 1px solid var(--gray-200);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

.footer__legal {
  display: flex;
  gap: 32px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--green-800);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero::before {
    width: 100%;
  }

  .section-header--split {
    flex-direction: column;
    gap: 24px;
  }

  .section-header--split .section-desc {
    padding-top: 0;
  }

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

  .vertical-card:nth-child(3n) {
    border-right: 1px solid var(--gray-200);
  }

  .vertical-card:nth-child(2n) {
    border-right: none;
  }

  .vertical-card:nth-child(n+5) {
    border-bottom: none;
  }

  .vertical-card:nth-child(4) {
    border-bottom: none;
  }

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

  .why-stat:nth-child(2) {
    border-right: none;
  }

  .why-stat:nth-child(1),
  .why-stat:nth-child(2) {
    border-bottom: 1px solid var(--gray-200);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .verticals__cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 36px);
    padding-bottom: 40px;
  }

  .hero__title {
    font-size: 36px;
  }

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

  .verticals,
  .how-we-work,
  .why-greenclues,
  .contact {
    padding: 64px 0;
  }

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

  .vertical-card {
    border-right: none !important;
    border-bottom: 1px solid var(--gray-200) !important;
  }

  .vertical-card:last-child {
    border-bottom: none !important;
  }

  .process-step {
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
  }

  .process-step__timeline {
    align-self: flex-start;
  }

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

  .why-card {
    border-right: none !important;
    border-bottom: 1px solid var(--gray-200) !important;
  }

  .why-card:last-child {
    border-bottom: none !important;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .process-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__links {
    flex-direction: column;
    gap: 36px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cookie-note {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none !important;
    border-bottom: 1px solid var(--gray-200);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }

  .why-stat {
    border-right: none !important;
    border-bottom: 1px solid var(--gray-200);
  }

  .why-stat:last-child {
    border-bottom: none;
  }

  .hero__tags {
    gap: 8px;
  }

  .tag {
    padding: 5px 12px;
    font-size: 12px;
  }
}