/* EBIS GB Holdings - Main Stylesheet */

:root {
  --color-primary: #697d57;
  --color-primary-dark: #4f5f42;
  --color-accent: #8faa6e;
  --color-link: #85bb5f;
  --color-link-hover: #75a954;
  --color-nav: #5a5a5a;
  --color-nav-active: #7a7a7a;
  --color-brand-green: #265d33;
  --color-text: #939394;
  --color-text-dark: #333333;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-hero-overlay: rgba(17, 17, 17, 0.55);
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Open Sans", "Segoe UI", sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--color-link-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0 0 1rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
}
h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}
h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

p {
  margin: 0 0 1.25rem;
}

ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: static;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: none;
  padding: 1.5rem 0 0.5rem;
}

.header-inner,
.header-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.logo-link img {
  height: auto;
  width: min(280px, 70vw);
}

/* Navigation */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-nav);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle-label span {
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -8px;
}
.nav-toggle-label span::after {
  top: 8px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.main-nav a {
  display: block;
  padding: 0.45rem 1.1rem;
  color: var(--color-nav);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-brand-green);
  background: rgba(0, 0, 0, 0.04);
}

.main-nav a.active {
  background: var(--color-nav-active);
  color: var(--color-white);
}

.main-nav a.active:hover,
.main-nav a.active:focus {
  background: var(--color-nav-active);
  color: var(--color-white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero h1,
.hero h2,
.hero p {
  color: var(--color-white);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero p {
  max-width: 700px;
  font-size: 1.05rem;
}

.hero--centered .container {
  text-align: center;
}

.hero--centered h1 {
  margin-left: auto;
  margin-right: auto;
}

/* Fixed parallax page banners */
.hero--home,
.hero--about,
.hero--solutions,
.hero--team,
.hero--contact {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero--home {
  background-image: url("../images/hero-home.jpg");
}

.hero--about {
  background-image: url("../images/about-hero.jpg");
}

.hero--solutions {
  background-image: url("../images/solutions-hero.jpg");
}

.hero--team {
  background-image: url("../images/team-hero.jpg");
  background-position: center calc(50% - 150px);
}

.hero--contact {
  background-image: url("../images/contact-hero.jpg");
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f7f8f5;
}

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.1rem;
}

.section-lead {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--color-brand-green);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.section-intro p + p {
  margin-top: 1.5rem;
}

.section-steps-intro {
  background: #accb8f;
}

.section-steps-intro .section-header h2 {
  color: var(--color-white);
}

.section-steps-intro .section-header p {
  color: #424242;
}

.section-steps-intro .benefits-list--green {
  max-width: 800px;
  margin: 0 auto;
}

.section-steps-intro .benefits-list--green li {
  color: #424242;
}

.section-steps-intro .benefits-list--green li::before {
  color: var(--color-brand-green);
}

/* Our Solutions page titles */
.solutions-page h1,
.solutions-page h2,
.solutions-page h3 {
  color: #1d4b28;
  text-align: center;
}

.solutions-page .hero--solutions {
  min-height: 380px;
  text-align: center;
  justify-content: center;
}

.solutions-page .hero h1 {
  color: var(--color-white);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.35);
}

.solutions-page .section-steps-intro .section-header h2 {
  color: #1d4b28;
}

.solutions-page .solution-lead,
.solutions-page .section-steps-intro .benefits-list--green li {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  line-height: 1.65;
  color: #265d33;
}

.solutions-page .solution-lead strong,
.solutions-page .section-steps-intro .benefits-list--green li strong {
  color: inherit;
}

.solutions-page .solution-note {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  line-height: 1.65;
}

.solutions-page .solution-image {
  display: block;
  max-width: 560px;
  width: 100%;
  margin: 1.5rem auto 2rem;
}

.solutions-page main p,
.solutions-page main ul {
  max-width: 636px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-page .section-steps-intro .benefits-list--green {
  max-width: 636px;
}

.section-steps {
  background: var(--color-white);
}

.page-cta {
  padding: 2rem 0 3.5rem;
  background: var(--color-white);
}

.page-lead {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  line-height: 1.65;
  color: var(--color-brand-green);
  text-align: center;
  max-width: 636px;
  margin-left: auto;
  margin-right: auto;
}

.page-lead strong {
  color: inherit;
}

.section-intro .page-lead {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.team-page .page-lead {
  max-width: none;
  width: 100%;
}

/* About Us page titles */
.about-page .section > .container > h2,
.about-page .section-header h2 {
  color: #1d4b28;
}

.about-page .section-steps-intro .section-header h2 {
  color: var(--color-white);
}

.about-page .step-card h3,
.about-page .step-card h3 strong {
  color: #1d4b28;
}

.cta-link {
  display: block;
  background: var(--color-brand-green);
  color: var(--color-white);
  text-align: center;
  padding: 1.15rem 2rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto;
  transition: background var(--transition);
}

.cta-link:hover,
.cta-link:focus {
  background: #1e4a28;
  color: var(--color-white);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3,
.card-body h4 {
  margin-bottom: 0.75rem;
}

/* Feature blocks */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-row.reverse .feature-image {
  order: 2;
}

.feature-row.reverse .feature-content {
  order: 1;
}

.feature-image img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-image--white {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-image--white img {
  box-shadow: none;
}

.challenge-image {
  display: block;
  max-width: 560px;
  width: 100%;
  margin: 2rem auto 0;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-card p {
  flex: 1;
  margin-bottom: 0;
}

.step-card-image {
  width: 100%;
  height: auto;
  margin: 1.25rem 0 0;
  border-radius: 4px;
  object-fit: contain;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-number {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Tags / lists */
.tag-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tag-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
  color: var(--color-brand-green);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tag {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card-body {
  padding: 1.5rem;
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--color-text);
  font-size: 0.95rem;
  font-style: italic;
}

/* Downloads */
.download-section {
  padding: 5rem 0;
}

.download-section + .download-section {
  padding-top: 0;
}

.download-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.download-content h2 {
  color: #1d4b28;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.download-content p {
  margin-bottom: 2rem;
  line-height: 1.75;
}

.download-content strong {
  color: #1d4b28;
  font-weight: 700;
}

.btn-download {
  display: inline-block;
  background: var(--color-brand-green);
  color: var(--color-white);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: background var(--transition);
}

.btn-download:hover,
.btn-download:focus {
  background: #1e4a28;
  color: var(--color-white);
}

.download-preview img {
  display: block;
  width: 100%;
  height: auto;
}

/* Contact page */
.contact-page .hero--contact {
  min-height: 480px;
  text-align: center;
  justify-content: center;
}

.contact-page .hero--contact-inner {
  max-width: 700px;
  width: 100%;
}

.contact-page .hero h1,
.contact-page .hero-intro {
  color: var(--color-white);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.35);
}

.contact-page .hero h1 {
  margin-bottom: 1.25rem;
}

.contact-page .hero-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 auto 2rem;
  max-width: 636px;
}

.contact-page .btn-email {
  display: inline-block;
  border-radius: 999px;
  padding: 0.9rem 4.75rem;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  border: none;
  background: #85bb5f;
  color: #265d33;
  transition: background var(--transition);
}

.contact-page .btn-email:hover,
.contact-page .btn-email:focus {
  background: #75a954;
  color: #265d33;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-group .required {
  color: #c0392b;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.checkbox-group input {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.form-message {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Benefits list */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--color-white);
  color: #6b6b6b;
  padding: 2rem 0 2.5rem;
}

.footer-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: min(160px, 45vw);
  height: auto;
  margin: 0 auto;
}

.footer-copy {
  color: #999;
  font-size: 0.85rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-privacy {
  color: var(--color-link);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-privacy:hover,
.footer-privacy:focus {
  color: var(--color-link-hover);
}

/* Privacy policy */
.policy-content h2 {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Page header (inner pages) */
.page-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin: 0;
}

/* CTA banner */
.cta-banner {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 3rem 1.25rem;
}

.cta-banner h2 {
  color: var(--color-white);
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-row,
  .contact-layout,
  .download-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row.reverse .feature-image,
  .feature-row.reverse .feature-content {
    order: unset;
  }
}

@media (max-width: 768px) {
  .header-inner,
  .header-home {
    padding-bottom: 0.5rem;
  }

  .nav-toggle-label {
    display: block;
    position: absolute;
    top: 0.5rem;
    right: 0;
  }

  .main-nav {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--color-white);
    transition: max-height var(--transition);
  }

  .nav-toggle:checked ~ .main-nav {
    max-height: 320px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0 1rem;
  }

  .main-nav a {
    width: auto;
  }

  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked + .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 320px;
  }

  .section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ============================================
   Home page layout (matches original EBIS site)
   ============================================ */

.home-page {
  --color-home-banner: var(--color-brand-green);
  --color-home-banner-hover: #1e4a28;
  --color-home-btn-on-banner: #85bb5f;
  --color-home-btn-on-banner-hover: #75a954;
  --color-home-btn-on-white: var(--color-brand-green);
  --color-home-btn-on-white-hover: #1e4a28;
  --color-home-text: var(--color-brand-green);
  --color-home-body: #6b6b6b;
}

/* Hero – centred titles only */
.home-page .hero--home {
  min-height: 380px;
  text-align: center;
  justify-content: center;
}

.home-page .hero--home-inner {
  text-align: center;
  width: 100%;
}

.home-page .hero--home h1,
.home-page .hero--home .hero-subtitle {
  color: var(--color-white);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.35);
}

.home-page .hero--home h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-page .hero--home .hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.65rem);
  font-weight: 700;
  margin: 0 auto;
  opacity: 1;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

/* Dark green intro band */
.home-page .home-intro {
  background: var(--color-home-banner);
  color: var(--color-white);
  padding: 3.5rem 0;
  text-align: center;
}

.home-page .home-intro-inner {
  max-width: 820px;
}

.home-page .home-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--color-white);
}

.home-page .home-intro strong {
  font-weight: 700;
}

/* Pill buttons */
.home-page .btn-pill {
  border-radius: 999px;
  padding: 0.7rem 2.25rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  display: inline-block;
}

.home-page .btn-light-green {
  background: var(--color-home-btn-on-banner);
  color: var(--color-home-banner);
}

.home-page .btn-light-green:hover,
.home-page .btn-light-green:focus {
  background: var(--color-home-btn-on-banner-hover);
  color: var(--color-home-banner);
}

.home-page .btn-dark-green {
  background: var(--color-home-btn-on-white);
  color: var(--color-white);
}

.home-page .btn-dark-green:hover,
.home-page .btn-dark-green:focus {
  background: var(--color-home-btn-on-white-hover);
  color: var(--color-white);
}

/* Stacked solution sections */
.home-page .home-block {
  padding: 3.5rem 0;
  background: var(--color-white);
}

.home-page .home-block-inner {
  max-width: 720px;
  text-align: center;
}

.home-page .home-block h2 {
  color: var(--color-home-text);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.home-page .home-block-image {
  margin: 0 auto 2rem;
  max-width: 560px;
  width: 100%;
}

.home-page .home-block p {
  color: var(--color-home-body);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.home-page .home-block strong {
  color: var(--color-home-text);
  font-weight: 700;
}

/* CTA banner */
.home-page .home-cta {
  padding: 0 1.25rem 3.5rem;
  background: var(--color-white);
}

.home-page .home-cta-link {
  display: block;
  background: var(--color-home-banner);
  color: var(--color-white);
  text-align: center;
  padding: 1.15rem 2rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto;
  transition: background var(--transition);
}

.home-page .home-cta-link:hover,
.home-page .home-cta-link:focus {
  background: var(--color-home-banner-hover);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .hero--home,
  .hero--about,
  .hero--solutions,
  .hero--team,
  .hero--contact {
    background-attachment: scroll;
  }

  .home-page .hero--home,
  .solutions-page .hero--solutions {
    min-height: 280px;
  }

  .home-page .home-intro,
  .home-page .home-block {
    padding: 2.5rem 0;
  }

  .home-page .btn-pill {
    width: auto;
    min-width: 180px;
  }
}
