:root {
  --green: #154734;
  --green-dark: #0f3124;
  --gold: #c9b28a;
  --bg: #f5f6fa;
}

body.inner-page {
  background: var(--bg);
}


/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: "Open Sans", Arial, sans-serif;
  background: #dde0e6;   /* slightly stronger canvas */
  color: #1f2933;
  font-size: 16px;
  line-height: 1.6;
}



/* Give whole page a bit more breathing room */
main {
  padding-bottom: 0; /* was 3rem */
}


/* Simple centered page width */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0.5rem;
}


/* HEADER */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(15, 49, 36, 0.08);
}


.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | nav | actions */
  align-items: center;
  padding: 1.25rem 1.5rem;
  column-gap: 2rem;
}


/* Logo area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 40px;           /* tweak until it feels right */
  width: auto;
  display: block;
}


/* Centered nav links */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}


.main-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}


.main-nav a:hover {
  color: var(--green);
}


/* Right-side actions: Contact  */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}


/* Contact as pill button */
.nav-contact {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


.nav-contact:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.6);
}


/* ===== HERO ===== */
.hero-outer {
  padding: 4rem 0 3rem;
  background: #e3e4e7;
}

.hero-axion-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2.8rem;
  align-items: center;
}



/* Left text */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.hero-title {
  font-size: 2.9rem;
  line-height: 1.1;
  color: #111827;
}


.hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  max-width: 30rem;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 49, 36, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 49, 36, 0.45);
  background: var(--green-dark);
}


.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #374151;
  background: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}


.btn-secondary:hover,
.btn-ghost:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}


.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: #6b7280;
}


/* Right: image */
.hero-photo-area {
  display: flex;
  justify-content: flex-end;  
}

.hero-logo-img {
  display: block;
  max-width: 340px;           /* increase size: try 320–380px */
  width: 100%;
  height: auto;
}


.hero-photo-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.45);
  transform: translateY(12px);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}


.hero-photo-frame-bg {
  margin-top: 1.5rem;
  height: 0;
}


/* Generic sections (About, Products, Contact, Privacy, Home sections) */
/* Generic page section – no card box */
.page-section {
  margin: 2rem auto;
  padding: 0 1rem;
  max-width: 900px;
}

/* Remove card styling from About */
.about-block {
  background: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: 0;
}

/* Kill card hover everywhere */
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
  border: 1px solid rgba(15, 49, 36, 0.04);
  transition: none;
}

.card:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
}


.page-section h1,
.page-section h2 {
  font-family: 'Roboto', sans-serif;
  color: #102a43;
  margin-bottom: 0.75rem;
}

.page-section p {
  color: #52606d;
  font-size: 0.96rem;
  margin-bottom: 0.75rem;
}

.page-section ul {
  margin-left: 1.2rem;
  margin-bottom: 0.75rem;
}

.page-section li {
  font-size: 0.95rem;
  color: #52606d;
  margin-bottom: 0.35rem;
}


.strip-points p {
  font-size: 0.9rem;
  color: #52606d;
  margin-bottom: 0.25rem;
}


.link-inline {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--green);
  text-decoration: underline;
}


/* Generic section blocks */
.section-block {
  padding: 3rem 0;
  border-top: 1px solid rgba(15, 49, 36, 0.04);
  background: #f5f6fa;
}

.section-alt {
  background: #f7f8fb;
}


/* WHY CHOOSE US */
.section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 0.4rem;
}

.section-why {
  background: #f5f6fa;
  border-top: none;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.section-why h2 {
  text-align: left;
}

.section-why .section-intro {
  max-width: 34rem;
}


/* Grey bubble under WHY CHOOSE US */
.why-bubble {
  margin-top: 1.8rem;
  background: #f3f4f6;
  border-radius: 18px;
  padding: 1.8rem 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.8rem;
  align-items: center;
}

.why-bubble-left {
  min-height: 200px;
}

.why-bubble-image {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.why-bubble .why-card {
  box-shadow: none;
  border-radius: 10px;
  border: 1px solid rgba(15, 49, 36, 0.06);
}

/* 4 icon cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
  border: 1px solid rgba(15, 49, 36, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.08);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  background: rgba(21, 71, 52, 0.06);
}

.why-icon-svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
  color: #102a43;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: #52606d;
}


/* Product cards (services block) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
  border: 1px solid rgba(15, 49, 36, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
}

.card h3,
.card h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.45rem;
  color: var(--green-dark);
}

.card p,
.pill-card p,
.strip-points p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #52606d;
}


/* WHAT WE DO – image cards like the screenshot */
.section-what {
  background: #f5f6fa;
}

.section-what-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-what-header h2 {
  margin-bottom: 0; /* intro takes the spacing */
}

/* optional small chip button */
.btn-chip {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.85rem;
  color: #111827;
  text-decoration: none;
}

/* grid like the logistics screenshot: 2 x 2 on desktop */
.services-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.2rem;
}

/* card with image + gradient + text overlay bottom-left */
.service-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

/* image container */
.service-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* dark gradient at bottom like your screenshot */
.service-gradient {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

/* text sits on top of gradient */
.service-text {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.1rem;
  color: #ffffff;
}

.service-text h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.service-text p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(249, 250, 251, 0.88);
}

/* hover effect similar feel */
.service-card:hover .service-image {
  transform: scale(1.03);
  transition: transform 0.25s ease;
}


/* RESPONSIVE for the grid */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }


  .service-image-wrap {
    height: 210px;
  }
}


/* Pill cards (Who we support) */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pill-card {
  padding: 1rem 1.3rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(16, 42, 67, 0.06);
  border: 1px solid rgba(15, 49, 36, 0.04);
}

.pill-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  color: #154734;
  margin-bottom: 0.3rem;
}

/* CTA band */
.cta-band {
  padding: 2.8rem 0;
  background: var(--green-dark);
  color: #ffffff;
  text-align: center;
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.cta-band-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cta-band-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero-axion-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-photo-frame {
    max-width: 520px;
    margin: 0 auto;
    transform: translateY(4px);
  }

  .strip-inner {
    grid-template-columns: 1fr;
  }

  .why-bubble {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.3rem;
  }

  .why-bubble-left {
    order: -1; /* image on top on mobile */
  }

  .why-bubble-image {
    max-height: 220px;
  }
}


@media (max-width: 600px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: flex-start;
  }
}


/* ===== WHO WE SUPPORT – AXION EXACT STYLE ===== */
.section-support-axion {
  background: #f7f8fb;
}

/* two-column layout */
.support-axion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2.6rem;
  align-items: center;
}


/* IMAGE CARD (ONLY CARD IN THIS SECTION) */
.support-image-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(16, 42, 67, 0.18);
}

.support-image-card img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}


/* RIGHT SIDE TEXT */
.support-text h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  color: #102a43;
  margin-bottom: 0.5rem;
}

.support-text .section-intro {
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

/* 2 x 2 text grid */
.support-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2.2rem;
}

.support-text-grid h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.02rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.support-text-grid p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: #52606d;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .support-axion-grid {
    grid-template-columns: 1fr;
  }

  .support-image-card img {
    max-height: 240px;
  }

  .support-text-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== AXION HAIRLINES (TOP & BOTTOM ONLY) ===== */
.support-item {
  padding: 1.3rem 0;
  border-top: none;
  border-bottom: none;
}

/* first two items: top + bottom */
.support-item:nth-child(1),
.support-item:nth-child(2) {
  border-top: 1px solid rgba(16, 42, 67, 0.12);
  border-bottom: 1px solid rgba(16, 42, 67, 0.12);
}

/* last two: bottom only */
.support-item:nth-child(3),
.support-item:nth-child(4) {
  border-bottom: 1px solid rgba(16, 42, 67, 0.12);
}

/* spacing inside the grid */
.support-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2.2rem;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #102a43;
  text-decoration: none;
}

.support-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.support-link:hover::after {
  transform: translateX(4px);
}


/* HOW IT WORKS – vertical hover expand list */
.section-how {
  background: #f5f6fa;
}

/* list wrapper */
.steps-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* each step box */
.step-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15, 49, 36, 0.06);
  box-shadow: 0 10px 26px rgba(16, 42, 67, 0.05);
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

/* header row: number + title */
.step-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* number badge */
.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(21, 71, 52, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* title */
.step-header h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #102a43;
}

/* body is hidden by default via max-height */
.step-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

/* body text */
.step-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #52606d;
  margin-top: 0.55rem;
  padding-left: 2.6rem; /* line up under title, beside number */
}

/* hover state: expand + highlight */
.step-item:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 71, 52, 0.22);
  box-shadow: 0 18px 40px rgba(16, 42, 67, 0.12);
}


.step-item:hover .step-body {
  max-height: 110px; /* was 160px */
  opacity: 1;
}


/* mobile: always open (hover is bad on touch) */
@media (max-width: 700px) {
  .step-item {
    padding: 1.1rem 1.1rem;
  }


  .step-body {
    max-height: none;
    opacity: 1;
  }


  .step-body p {
    padding-left: 2.6rem;
  }
}


/* Reserve vertical space so CTA doesn't move */
.section-how {
  position: relative;
}


/* tweak this value to how tall the list is when all 4 are "open" */
.steps-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 310px; /* try 380–450px depending on your text */
}


/* FOOTER */
.site-footer {
  padding: 2rem 0 3rem;
  background: #f5f6fa;
}

.footer-inner {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}

.footer-inner a {
  color: #968c00;
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}


/* Stop hover movement and add breathing room on legal cards */

/* Target only cards inside legal sections */
.section-block .card {
  margin-bottom: 1.2rem;        /* extra space under each card */
}


/* Remove hover transform for legal pages by scoping to page ids if you have them,
   or more simply remove transform for all cards with lots of text: */
.section-block .card:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04); /* same as normal */
}


/* Make headings and paragraphs inside legal cards more spaced out */
.section-block .card h3 {
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}

.section-block .card h3:first-child {
  margin-top: 0; /* keep the first heading tight to the top */
}

.section-block .card p {
  margin-bottom: 0.5rem;
}


/* APPLY SECTION */
.apply-form label {
  display: block;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.75rem;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 0.9rem;
  color: #111827;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(21, 71, 52, 0.2);
}

.apply-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0.9rem 0 1rem;
}

.apply-consent input {
  width: auto;
  margin-top: 0.2rem;
}

.apply-consent a {
  color: var(--green);
  text-decoration: underline;
}

.apply-steps {
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #52606d;
  margin-top: 0.3rem;
}

.apply-steps li {
  margin-bottom: 0.35rem;
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card-grid > .card:last-child {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: white;
  padding: 1rem 1.5rem;
  display: none; /* hidden by default, shown with JS */
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  justify-content: center;
}

.cookie-banner p {
  flex: 1;
  max-width: 900px;
}

.cookie-banner button {
  background: var(--gold);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 2rem 2rem;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: flex-start;
  }
}

  .hero {
    padding: 2rem 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-strip {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
  }

  .cta-band {
    padding: 2rem 1.5rem;
  }

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.apply-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 700px) {
  .apply-form-row {
    grid-template-columns: 1fr;
  }
}

/* ABOUT SECTION */
/* Heading pattern reused from Products */
.page-header {
  margin-bottom: 1.4rem;
}

.page-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.about-block h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: #102a43;
}

.about-block h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #102a43;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}

.about-block p,
.about-block ul {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #52606d;
  margin-bottom: 0.8rem;
}

.about-block ul {
  padding-left: 1.4rem;
}

.about-intro {
  margin-bottom: 1.2rem;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
  border: 1px solid rgba(15, 49, 36, 0.04);
}

/* Page heading pattern (kicker + title) */
.page-header {
  margin-bottom: 1.4rem;
}

.page-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af; /* light grey */
  margin-bottom: 0.2rem;
}

.page-header h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: #102a43;
}

/* Short About strip */
.section-strip {
  padding: 2.2rem 0;
  background: #ffffff;
  border-top: 1px solid rgba(15, 49, 36, 0.06);
  border-bottom: 1px solid rgba(15, 49, 36, 0.06);
}

.strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.strip-about h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  color: #102a43;
  margin-bottom: 0.5rem;
}

.strip-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #52606d;
  max-width: 34rem;
}

.strip-points {
  background: #f5f6fa;
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.04);
}

.strip-points p {
  font-size: 0.9rem;
  color: #52606d;
  margin-bottom: 0.25rem;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.link-inline::after {
  content: "→";
  margin-left: 0.25rem;
  transition: transform 0.18s ease;
}

.link-inline:hover::after {
  transform: translateX(3px);
}

/* Mobile: stack columns */
@media (max-width: 800px) {
  .strip-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .strip-points {
    max-width: 420px;
  }
}
