/* ==========================================================================
   BizEase Solutions — shared stylesheet
   ========================================================================== */

:root {
  --accent: rgb(11, 34, 33);
  --accent-2: #1b4b52;
  --accent-light: #2bb8bb;
  --accent-orange: #f2a541;
  --text-light: #94a19d;
  --text-dark: #1f2d2c;
  --text-body: #3d4a48;
  --border-light: #d8dcda;
  --bg-light: #ffffff;
  --gray-band: #f2f2f0;
  --input-bg: #e6e6e4;

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--accent-2);
  line-height: 1.6;
  position: relative;
}

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

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

button {
  font-family: inherit;
}

main {
  min-height: 60vh;
}

/* ---------- layout shell ---------- */

.white-bg {
  position: absolute;
  top: 500px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  z-index: -1;
}

.page-wrap {
  max-width: 100vw;
  margin: 0 auto;
}

.site-header {
  padding: 48px 24px 50px;
  text-align: center;
  background-color: var(--accent-2);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand img {
  width: 30vw;
  height: auto;
  object-fit: cover;
  background: var(--bg-light);
}

.brand h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--text-light);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ---------- nav ---------- */

.site-nav {
  margin: 40px auto 0;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 2px solid #213e42;
  border-bottom: 2px solid #213e42;
  position: relative;
}

.site-nav::before {
  content: "";
}

.site-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  background: #1b7272;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--bg-light);
}

.site-nav a.active {
  background: var(--accent-light);
  color: var(--bg-light);
}

/* ---------- white card ---------- */

.content-card {
  background: var(--bg-light);
  margin-top: 40px;
  padding: 56px 60px 64px;
  border-radius: 2px 2px 0 0;
  width: 100vw;
}

.content-card h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2rem;
  color: var(--text-dark);
  margin: 0 0 20px;
}

.content-card>p {
  max-width: 780px;
  color: var(--text-body);
  font-size: 1.02rem;
  margin: 0;
}

.thumb-img {
  width: 720px;
  height: 100%;
}

/* ---------- blog ---------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1000px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-light);
  box-shadow: 0 6px 18px rgba(11, 34, 33, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(11, 34, 33, 0.16);
}

.blog-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-card-color {
  width: 100%;
  height: 190px;
}

.blog-card-body {
  padding: 20px 22px 24px;
}

.blog-post-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  margin: 0 0 8px;
}

.blog-post-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.blog-post-excerpt {
  color: var(--text-body);
  font-size: 0.92rem;
  margin: 0;
}

.blog-empty {
  color: var(--text-light);
}

/* ---- single post page ---- */

.blog-post-hero {
  padding: 90px 60px 60px;
  color: var(--bg-light);
}

.blog-back-link {
  display: inline-block;
  color: var(--bg-light);
  opacity: 0.8;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.blog-back-link:hover {
  opacity: 1;
}

.blog-post-date--hero {
  color: var(--bg-light);
  opacity: 0.85;
}

.blog-post-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  margin: 0;
  max-width: 780px;
}

.blog-post-body {
  max-width: 780px;
}

.blog-post-body p {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 1.25em;
}

.blog-post-body p:last-child {
  margin-bottom: 0;
}

.blog-post-body h1,
.blog-post-body h2,
.blog-post-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-dark);
  margin: 1.4em 0 0.6em;
}

.blog-post-body h1:first-child,
.blog-post-body h2:first-child,
.blog-post-body h3:first-child {
  margin-top: 0;
}

.blog-post-body h1 {
  font-size: 1.7rem;
}

.blog-post-body h2 {
  font-size: 1.4rem;
}

.blog-post-body h3 {
  font-size: 1.15rem;
}

.blog-post-body ul,
.blog-post-body ol {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 1.25em;
  padding-left: 1.4em;
}

.blog-post-body li {
  margin-bottom: 0.4em;
}

.blog-post-body strong {
  color: var(--text-dark);
}

.blog-post-body code {
  background: var(--gray-band);
  border-radius: 3px;
  padding: 0.15em 0.4em;
  font-size: 0.92em;
}

.blog-post-body a {
  color: var(--accent-light);
  text-decoration: underline;
}

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

/* ---------- 404 page ---------- */


.fof-card {
  margin-top: 10vh;
}

.flex-card {
  display: flex;
  justify-content: space-between;
}

.fof-img {
  width: 35%;
  height: 100%;
}

.btn-orange {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.btn-orange:hover {
  filter: brightness(1.05);
}

/* ---------- hero / about us ---------- */

.hero-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 56px 60px 72px;
  color: #1b4b52;
}

.hero-about .eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--accent-orange);
  margin: 0 0 14px;
}

.hero-about h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--bg-light);
  margin: 0 0 18px;
}

.hero-lead {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 460px;
  margin: 0 0 32px;
}

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

.hero-img-div {
  width: 100%;
  height: 85%;
  display: flex;
  justify-content: end;
}

.hero-img {
  height: 95%;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--bg-light);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border: 1px solid #4a6663;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}


/* ---------- CTA band ---------- */

.cta-band {
  background: var(--gray-band);
  text-align: center;
  padding: 64px 24px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--text-dark);
  max-width: 620px;
  margin: 0 auto 28px;
}

/* ---------- footer contact section ---------- */

.footer-contact {
  background: var(--bg-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-contact .photo {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.footer-contact .info {
  padding: 64px 60px;
}

.footer-contact h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 0 0 24px;
}

.footer-contact .info p {
  margin: 0 0 20px;
  font-size: 0.98rem;
}

.footer-contact .info h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light);
}

.social-icons a.linkedin {
  background: var(--accent);
}

.social-icons a.whatsapp {
  background: var(--accent);
}

.social-icons a.calendly {
  background: var(--accent);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- site footer bar ---------- */

.site-footer {
  background-color: #1b4b52;
  background-image: url("images/BizEase_schakel_met_tekst.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  background-size: auto 100%;
  /* background: var(--bg-light); */
  padding: 0 60px 40px;
}

.site-footer .divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0 0 24px;
}

.badge-link {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-light);
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-meta a {
  text-decoration: underline;
}

/* ---------- contact page ---------- */

.contact-hero {
  padding-bottom: 40px;
}

.contact-layout {
  background: var(--bg-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 56px 60px 64px;
}

.contact-layout h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--text-dark);
  margin: 0 0 32px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 8px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 2px;
  background: var(--input-bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
}

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

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
}

.checkbox-field label {
  font-size: 0.95rem;
  color: var(--text-body);
}

.contact-art {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-art p {
  margin-top: 24px;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-block;
}

.contact-art .logo-graphic {
  width: 30vw;
  margin: 40px auto 0;
}

/* ---------- about page ---------- */

.about-intro {
  background: var(--accent-2);
  text-align: center;
  padding: 80px 24px 72px;
}

.about-intro .section-label {
  text-align: center;
}

.about-intro h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--bg-light);
  margin: 0 0 16px;
}

.about-intro-lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.02rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
}

.about-photo span {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-body);
  text-align: center;
}

.about-content-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-content p {
  max-width: 720px;
  font-size: 1.02rem;
  color: var(--text-body);
  margin: 0;
}

.about-content p:first-child {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.about-content strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.about-tagline {
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  max-width: 720px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--accent);
}

/* ---------- about/privacy page ---------- */

.text-section {
  background-color: var(--bg-light);
  padding: 70px 60px 100px;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  counter-reset: article-counter;
}

.text-section h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.3rem;
  color: var(--text-dark);
  margin: 0 0 4px;
}

.text-section>strong {
  align-self: flex-start;
  display: inline-block;
  background: var(--accent);
  color: var(--bg-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.text-section>br {
  display: none;
}

.text-section>p {
  font-size: 1.02rem;
  color: var(--text-body);
  max-width: 720px;
}

.text-page-card {
  counter-increment: article-counter;
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent-light);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.text-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 46, 44, 0.08);
}

.text-page-card span {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 24px 32px 0;
}

.text-page-card span::before {
  content: counter(article-counter, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-display);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.text-page-card h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0;
}

.text-page-card div {
  margin: 0;
  height: auto;
  padding: 14px 32px 28px;
  background: transparent;
  border-radius: 0;
}

.text-page-card ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.text-page-card li {
  font-size: 0.95rem;
  color: var(--text-body);
}

.text-page-card li::marker {
  color: var(--accent-light);
  font-weight: 700;
}

.text-page-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
}

/* ---------- service list ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  min-height: 360px;
  background: #f2f2f0;
  overflow: hidden;
  border-radius: 3px;
}

.service-card-reverse {
  grid-template-columns: 1fr minmax(280px, 42%);
}

.service-card-reverse .service-image {
  order: 2;
}

.service-card-reverse .service-content {
  order: 1;
}

.service-image {
  min-height: 360px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.03);
}

.service-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.service-number {
  font-family: var(--font-display);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.service-content h3 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 16px;
}

.service-content p {
  max-width: 600px;
  margin: 0 0 28px;
  font-size: 0.98rem;
  color: var(--text-body);
}

.service-btn {
  position: relative;
  bottom: -50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.service-btn-reverse {
  position: relative;
  bottom: -50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  right: -40vw;
}

/* ---------- additional services ---------- */
.additional-services {
  background: var(--accent-2);
  color: var(--bg-light);
  padding: 90px 60px;
}

.additional-services-inner {
  max-width: 920px;
  margin: 0 auto;
}

.section-label {
  display: block;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.additional-services h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 18px;
}

.additional-services>.additional-services-inner>p {
  max-width: 680px;
  color: var(--text-light);
  margin: 0 0 42px;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid #2b504d;
  background: rgba(255, 255, 255, 0.035);
}

.coming-soon-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--bg-light);
  font-size: 1.6rem;
  font-weight: 300;
}

.coming-soon h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 4px;
}

.coming-soon p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- services summary ---------- */
.services-summary {
  background: var(--bg-light);
  padding: 90px 60px 100px;
}

.summary-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.summary-intro h2 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 18px;
}

.summary-intro p {
  margin: 0 auto;
  max-width: 680px;
}

.summary-grid {
  max-width: 1100px;
  margin: 25px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.summary-card {
  padding: 32px;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 46, 44, 0.08);
}

.summary-card>span {
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.summary-card h3 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 10px 0 10px;
}

.summary-card p {
  font-size: 0.92rem;
  margin: 0 0 20px;
}

.summary-card a {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.summary-card a:hover {
  color: var(--accent-light);
}

.summary-footer {
  max-width: 1100px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.summary-footer p {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* ---------- services ---------- */
.services-section {
  padding-top: 70px;
  padding-bottom: 80px;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-intro h2 {
  margin-bottom: 18px;
}

.section-intro p {
  max-width: 760px;
}

/* ---------- responsive ---------- */

@media (max-width: 800px) {

  .content-card,
  .footer-contact .info,
  .contact-layout,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-grid,
  .footer-contact,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-contact .photo {
    min-height: 280px;
  }

  .brand h1 {
    font-size: 1.9rem;
  }

  .site-nav a {
    padding: 12px 18px;
  }

  .contact-art .logo-graphic {
    width: 90vw;
    margin: 20px auto 0;
  }

  .brand img {
    height: 10vh;
    width: auto;
  }

  .text-section {
    padding: 48px 24px 64px;
  }

  .text-page-card span,
  .text-page-card div {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-intro {
    padding: 56px 24px 48px;
  }

  .about-intro h1 {
    font-size: 2rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ==========================================================
   SERVICE DETAIL PAGES
   ========================================================== */


/* ---------- service hero ---------- */

.service-page-hero {
  background: var(--accent-2);
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.service-page-hero-content {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-page-hero-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--accent-orange);
  margin: 0 0 20px;
}

.service-page-hero-content p {
  max-width: 600px;
  font-size: 1.05rem;
  margin: 0 0 30px;
  color: #fff;
}

.service-page-hero-image {
  min-height: 480px;
  overflow: hidden;
}

.service-page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ---------- introduction ---------- */

.service-page-content {
  background: var(--bg-light);
  padding: 90px 60px;
}

.service-page-text {
  max-width: 850px;
  margin: 0 auto;
}

.service-page-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 24px;
}

.service-page-text p {
  font-size: 1rem;
  margin: 0 0 18px;
}


/* ---------- details ---------- */

.service-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-bottom: 25px;
}


/* ---------- process ---------- */

.service-process {
  background: var(--accent-2);
  padding: 90px 60px;
}

.service-process-content {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
  color: #fff;
}

.service-process-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-orange);
  margin: 0 0 18px;
}


.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-step {
  padding: 32px;
  border-top: 2px solid var(--accent-light);
}

.process-step>span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.process-step h3 {
  font-family: var(--font-display);
  color: var(--accent-orange);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 10px 0;
}

.process-step p {
  font-size: 0.92rem;
  margin: 0;
  color: #fff;
}


/* ---------- responsive ---------- */

@media (max-width: 800px) {

  .service-page-hero {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .service-page-hero-content {
    padding: 50px 24px;
  }

  .service-page-hero-content h2 {
    font-size: 2.2rem;
  }

  .service-page-hero-image {
    min-height: 280px;
    order: -1;
  }

  .service-page-content,
  .service-details,
  .service-process {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

}

/* ---------- responsive services ---------- */

@media (max-width: 800px) {

  .hero-about h1 {
    font-size: 2.5rem;
  }

  .hero-img-div {
    display: none;
  }

  .services-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .services-list {
    gap: 24px;
  }

  .service-card,
  .service-card-reverse {
    display: flex;
    flex-direction: column;
  }

  .service-card-reverse .service-image,
  .service-card-reverse .service-content {
    order: initial;
  }

  .service-image {
    min-height: 240px;
  }

  .service-content {
    padding: 32px 24px;
  }

  .additional-services {
    padding: 60px 24px;
  }

  .services-summary {
    padding: 60px 24px 70px;
  }

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

  .summary-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}