:root {
  /**
   * colors
   */

  --st-patricks-blue: hsl(236, 57%, 28%);
  --amaranth-purple: hsl(335, 88%, 38%);
  --royal-blue-dark: hsl(231, 68%, 21%);
  --chrome-yellow: hsl(39, 100%, 52%);
  --space-cadet-1: hsl(230, 41%, 25%);
  --space-cadet-2: hsl(230, 59%, 16%);
  --winter-sky_50: hsla(335, 87%, 53%, 0.5);
  --purple-navy: hsl(236, 38%, 33%);
  --ksu-purple: hsl(275, 54%, 33%);
  --winter-sky: hsl(335, 87%, 53%);
  --razzmatazz: hsl(335, 87%, 51%);
  --platinum: hsl(0, 0%, 98%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --rajah: hsl(29, 99%, 67%);
  --white: hsl(0, 0%, 100%);

  --gradient-1: linear-gradient(
    90deg,
    var(--royal-blue-dark) 0,
    var(--ksu-purple) 51%,
    var(--royal-blue-dark)
  );
  --gradient-2: linear-gradient(90deg, var(--razzmatazz), var(--rajah));

  /**
   * typography
   */

  --ff-source-sans-pro: "Rubik", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.8rem;
  --fs-3: 3.2rem;
  --fs-4: 2.5rem;
  --fs-5: 2.4rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-12: 12px;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * shadow
   */

  --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);

  /* Safe-area insets for modern phones with camera notches */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

/* ======================================= */
/* Custom styles for internal pages */
/* These classes provide alternative layouts for pages other than the home page.
   They preserve the colour palette from the home page but avoid reusing the large
   hero section.  They also ensure that content remains responsive and does not
   cause horizontal scrolling on mobile devices. */

/* Ensure no horizontal scrolling occurs */

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

html,
body {
  overflow-x: hidden;
}

/* Smaller page header for internal pages */
.page-header {
  background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg-bottom.png"),
    url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg.png"), var(--gradient-1);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -1000000px bottom, bottom, center;
  background-size: cover, cover, auto;
  color: var(--white);
  padding-block: 130px;
  height: 350px;
  text-align: center;
  
    /* animatie */
  animation: waveAnimPage-Header 4s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

@keyframes waveAnimPage-Header {
  0% {
    background-position: -1000000px bottom, -20px bottom, center;
  }
  100% {
    background-position: -1000020px bottom, 0px bottom, center;
  }
}

.page-header h1 {
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  margin-bottom: 10px;
}

.page-header p {
  font-size: var(--fs-8);
  max-width: 600px;
  margin-inline: auto;
}

/* Generic page section wrapper */
.page-section {
  padding-block: var(--section-padding);
}



.page-section .container {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 15px;
}

.page-section a {
  margin-top: 10px;
}

/* Two column layout that stacks on narrow screens */
.two-column {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .two-column {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Image styling inside columns */
.page-image {
  width: 100%;
  border-radius: var(--radius-12);
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Service overview grid for the services page */
.service-overview {
  display: grid;
  gap: 30px;
  justify-items: center;
  justify-content: center;
  max-width: 1140px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .service-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .service-overview {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-overview-card {
  background-color: var(--platinum);
  padding: 25px;
  border-radius: var(--radius-12);
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 260px;
  height: 100%;
}

.service-overview-card h3 {
  color: var(--st-patricks-blue);
  font-size: var(--fs-6);
  margin-bottom: 10px;
}

.service-overview-card p {
  font-size: var(--fs-8);
  margin-bottom: 20px;
}

.service-overview-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  object-fit: cover;
  border-radius: 50%;
  background-color: var(--white);
}

/* Blog page */
.blog-hero-tag,
.blog-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--fw-600);
  color: var(--rajah);
  margin-bottom: 12px;
}

.blog-intro h2,
.blog-latest h2,
.blog-deep-dives h2 {
  color: var(--st-patricks-blue);
}

.blog-snapshot {
  background-color: var(--space-cadet-2);
  color: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(10, 14, 35, 0.45);
}

.blog-snapshot ul {
  padding-left: 18px;
  margin-block: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-snapshot li {
  line-height: 1.5;
}

.blog-snapshot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.blog-snapshot-meta .label {
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.blog-snapshot-meta .value {
  margin: 0;
  font-size: 1.05rem;
  font-weight: var(--fw-600);
}

.blog-card-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: var(--white);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(19, 37, 82, 0.08);
  box-shadow: 0 25px 70px rgba(10, 14, 35, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.blog-card h3 {
  margin: 0;
  font-size: var(--fs-6);
  color: var(--space-cadet-1);
}

.blog-card p {
  margin: 0;
  color: var(--purple-navy);
}

.blog-card ul {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--purple-navy);
}

.blog-tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background-image: var(--gradient-2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
}

.blog-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: var(--fw-600);
  color: var(--rajah);
}

.blog-latest .lead {
  color: var(--purple-navy);
  margin: 12px auto 20px;
  max-width: 720px;
  text-align: center;
}

.blog-resource-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.resource-card {
  background-color: var(--platinum);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.resource-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--st-patricks-blue);
}

.resource-card p {
  margin: 0 0 10px;
  color: var(--purple-navy);
}

.resource-card ul {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--purple-navy);
}

.blog-articles h2 {
  margin-bottom: 12px;
}

.blog-lead {
  color: var(--purple-navy);
  max-width: 760px;
  margin-bottom: 32px;
}

.blog-article-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-article {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(5, 15, 45, 0.08);
  box-shadow: 0 35px 90px rgba(10, 14, 35, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(16, 30, 70, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-category {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 105, 180, 0.12);
  color: var(--razzmatazz);
  font-weight: var(--fw-600);
}

.blog-article h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--space-cadet-1);
}

.blog-article p {
  margin: 0;
  color: var(--purple-navy);
  line-height: 1.7;
}

.blog-article p.intro {
  font-size: 1.05rem;
  font-weight: var(--fw-600);
  color: var(--space-cadet-1);
}

.blog-article blockquote {
  margin: 0;
  padding: 18px 24px;
  border-left: 4px solid var(--winter-sky);
  background: rgba(124, 58, 237, 0.05);
  font-style: italic;
  color: var(--space-cadet-1);
  border-radius: 0 18px 18px 0;
}

.blog-highlights {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--purple-navy);
}

.blog-highlights strong {
  color: var(--space-cadet-1);
}

.blog-article-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--st-patricks-blue);
  font-weight: var(--fw-600);
}

@media (min-width: 576px) {
  .blog-article-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cta-section {
  padding-block: calc(var(--section-padding) * 1.5);
}

.cta-card {
  background-image: var(--gradient-1);
  color: var(--white);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.cta-card h2 {
  font-size: var(--fs-3);
  margin-bottom: 12px;
}

.cta-card p {
  font-size: var(--fs-7);
  margin: 0;
}

.cta-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--fw-600);
  opacity: 0.8;
  margin-bottom: 10px;
}

.cta-btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 56px;
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  border-radius: 999px;
  background-image: var(--gradient-2);
  min-width: 220px;
}

@media (min-width: 768px) {
  .cta-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .cta-card h2 {
    max-width: 520px;
  }

  .cta-btn {
    align-self: center;
  }
}

/* Timeline styling for the "Werkwijze" page */
.timeline {
  --timeline-marker-size: 14px;
  --timeline-marker-offset: clamp(36px, 6vw, 64px); /* Controls how far the marker sits inside de sectie */
  --timeline-content-gap: 16px;   /* Gap between the marker en de tekst */
  position: relative;
  margin: 24px 0 0;
  padding-left: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: calc(
    var(--timeline-marker-offset) +
    (var(--timeline-marker-size) / 2) +
    var(--timeline-content-gap)
  );
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(var(--timeline-marker-offset) - (var(--timeline-marker-size) / 2));
  top: 9px;
  width: var(--timeline-marker-size);
  height: var(--timeline-marker-size);
  background-color: var(--winter-sky);
  border-radius: 50%;
}

.timeline-item h3 {
  color: var(--st-patricks-blue);
  margin-bottom: 10px;
  font-size: var(--fs-6);
}

.timeline-item p {
  font-size: var(--fs-8);
  color: var(--purple-navy);
}

.inline-link {
  display: inline;
  color: var(--winter-sky);
  font-weight: var(--fw-600);
}

.inline-link:hover {
  text-decoration: underline;
}

/* Case study styling for clients page */
.case-study {
  display: grid;
  gap: 30px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .case-study {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.case-study:nth-child(even) {
  direction: rtl;
}

.case-study:nth-child(even) .case-study-content {
  text-align: right;
}

.case-study img {
  width: 100%;
  border-radius: var(--radius-12);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.case-study-content {
  padding: 0 20px;
}

.case-study-content h3 {
  color: var(--st-patricks-blue);
  margin-bottom: 10px;
  font-size: var(--fs-6);
}

.case-study-content p {
  font-size: var(--fs-8);
  margin-bottom: 15px;
}

/* Blog post grid for the Blog page */
.blog-overview {
  display: grid;
  gap: 30px;
}

@media (min-width: 768px) {
  .blog-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .blog-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
  overflow: hidden;
  background-color: var(--platinum);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card .post-content {
  padding: 20px;
}

.post-card h3 {
  color: var(--st-patricks-blue);
  margin-bottom: 10px;
  font-size: var(--fs-6);
}

.post-card p {
  font-size: var(--fs-8);
  margin-bottom: 15px;
}

.post-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-8);
  color: var(--purple-navy);
}

/* Contact form styling */
.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--platinum);
  border-radius: var(--radius-4);
  font-size: var(--fs-8);
  font-family: var(--ff-poppins);
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

/* FAQ accordion component */
.faq-list {
  margin-top: 30px;
}

.faq-item {
  border: 1px solid var(--platinum);
  border-radius: var(--radius-12);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-item summary {
  padding: 15px 60px 15px 20px;
  background-color: var(--platinum);
  cursor: pointer;
  font-weight: var(--fw-600);
  color: var(--st-patricks-blue);
  position: relative;
  transition: background-color var(--transition-1), color var(--transition-1);
}

.faq-item summary:hover {
  background-color: var(--white);
}

.faq-item.is-animating summary {
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
 * Meerstappig intakeformulier (contactpagina)
 *
 * Dit gedeelte bevat de styling voor het intakeformulier met drie stappen
 * zoals gebruikt op de oude website. De kleuren zijn aangepast om aan te
 * sluiten bij de kleurstelling van de nieuwe site. Pas deze CSS niet aan in
 * andere componenten om conflicten te voorkomen.
 * ------------------------------------------------------------------------- */
#msform {
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
  text-align: center;
  position: relative;
  padding: 0;
}


#msform fieldset {
  background: var(--platinum);
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  width: 100%;
  position: relative;
  height: 350px;
  padding-bottom: 70px;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform input,
#msform textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  font-family: Montserrat, var(--ff-poppins), sans-serif;
  font-size: 13px;
  color: var(--royal-blue-dark);
  background-color: var(--white);
}

#msform input:focus,
#msform textarea:focus {
  outline: none;
  box-shadow: 0 0 5px var(--winter-sky);
  border-color: var(--winter-sky);
}

.button-group {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
}

#msform .action-button {
  width: 100px;
  background: var(--gradient-2);
  background-size: 200%;
  font-weight: bold;
  color: var(--white);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px;
  margin: 0;
  font-size: 14px;
  transition: background-position 0.3s ease;
}

#msform .action-button:hover,
#msform .action-button:focus {
  background-position: right;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--winter-sky);
}

.fs-title {
  font-size: 17px;
  text-transform: uppercase;
  color: var(--royal-blue-dark);
  margin-bottom: 10px;
}

.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  counter-reset: step;
}

#progressbar li {
  list-style-type: none;
  color: var(--purple-navy);
  text-transform: uppercase;
  font-size: 13px;
  width: 33.33%;
  float: left;
  position: relative;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: var(--royal-blue-dark);
  background: ghostwhite;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}

#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: ghostwhite;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
}

#progressbar li:first-child:after {
  content: none;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--winter-sky);
  color: var(--white);
}

.input-error {
  border: 1px solid red !important;
  outline: none;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.3s ease;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary::after,
.faq-item summary::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: currentColor;
  transform-origin: center;
  transition: transform 250ms ease, opacity 200ms ease;
}

.faq-item summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item summary::after {
  transform: translateY(-50%);
}

.faq-item[open] summary::before {
  opacity: 0;
  transform: translateY(-50%) rotate(0);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item div {
  padding: 15px 20px;
  font-size: var(--fs-8);
  background-color: var(--white);
}

/* Responsive adjustments for the mobile navigation logo */
@media (max-width: 500px) {
  .navbar-top .logo {
    /* Maak het logo kleiner in het mobiele hamburgermenu zodat de sluitknop zichtbaar blijft */
    font-size: 2.4rem;
  }
}

/* =========================================== */
/* Carousel styling voor de klantenpagina */
.carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 26px;
  padding-bottom: 10px;
}

.carousel-item {
  background-color: var(--platinum);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.carousel-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.carousel-item .case-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.carousel-item h3 {
  color: var(--st-patricks-blue);
  font-size: var(--fs-6);
  margin: 0;
}

.carousel-item p {
  font-size: var(--fs-8);
  margin: 0;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}

.carousel-controls button {
  background-image: var(--gradient-2);
  border: none;
  border-radius: 50%;
  padding: 10px;
  color: var(--white);
  font-size: 1.8rem;
}

@media (max-width: 640px) {
  .carousel {
    grid-template-columns: 1fr;
  }
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
input,
button,
ion-icon {
  display: block;
}

button,
input {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

img {
  height: auto;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--purple-navy);
  font-size: 1.6rem;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.h2,
.h3 {
  font-family: var(--ff-source-sans-pro);
}

.btn {
  background-image: var(--gradient-2);
  background-size: 200%;
  color: var(--white);
  padding: 12px 35px;
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  border-radius: 0 25px;
  transition: var(--transition-2);
}

.btn:is(:hover, :focus) {
  background-position: right;
}

.w-100 {
  width: 100%;
}


.hero-banner {
  overflow: hidden;
  display: inline-block;
}

/* Wrapper zorgt voor smooth scale */
.img-wrapper {
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: inline-block;
}

/* Hover: alleen wrapper schalen */
.img-wrapper:hover {
  transform: scale(1.05);
}

.svg-bounce {
  display: block;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.svg-bounce:hover {
  transform: scale(1.05);
}

/* Inner image heeft alleen de subtiele wave animatie */
.banner-animation {
  width: 100%;
  display: block;
  animation: waveAnim 2s ease-in-out infinite alternate;
}

@keyframes waveAnim {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(2px, 2px) rotate(1deg);
  }
}



.section {
  padding-block: var(--section-padding);
}

.section-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-3);
  margin-block-end: 60px;
  max-width: max-content;
  margin-inline: auto;
}

.underline {
  position: relative;
}

.underline::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background-image: var(--gradient-2);
  border-radius: 10px;
}

:is(.service-card, .features-card) .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

:is(.service-card, .features-card, .blog-card) .text {
  font-size: var(--fs-8);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  --color: var(--white);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: calc(14px + var(--safe-top));
  padding-bottom: 14px;
  padding-inline: 0;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  --color: var(--st-patricks-blue);

  position: fixed;
  background-color: var(--white);
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  padding-inline: max(15px, var(--safe-left)) max(15px, var(--safe-right));
}

.logo {
  color: var(--color);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-3);
}

.nav-open-btn {
  color: var(--color);
  font-size: 32px;
  padding: 4px;
}

.navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: min(280px, 92vw);
  min-height: 100%;
  padding: calc(20px + var(--safe-top)) max(20px, var(--safe-left)) 20px max(20px, var(--safe-right));
  visibility: hidden;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
  transform: translateX(-100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.navbar.active {
  transform: translateX(0);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px 30px;
}

.navbar-top .logo {
  color: var(--st-patricks-blue);
  font-size: 2rem;
  font-weight: var(--fw-700);
}

.nav-close-btn {
  color: var(--space-cadet-1);
  font-size: 2.8rem;
  padding: 4px;
}

.navbar-item:not(:last-child) {
  border-bottom: 1px solid var(--platinum);
}

.navbar-link {
  color: var(--space-cadet-1);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  padding-block: 12px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_70);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 430px) {
  .header > .container > a .logo {
    font-size: 2.6rem;
  }

  .nav-open-btn {
    font-size: 28px;
  }
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg-bottom.png"),
    url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg.png"), var(--gradient-1);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -280px bottom, center, center;
  background-size: cover, cover, auto;
  padding-block-start: 120px;
  padding-block-end: var(--section-padding);
}

.hero-content {
  margin-block-end: 50px;
}

.hero-subtitle {
  color: var(--amaranth-purple);
  font-size: var(--fs-7);
  margin-block-end: 15px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.hero-title {
  color: var(--white);
  font-size: var(--fs-1);
  margin-block-end: 10px;
}

.hero-text {
  color: var(--white);
  font-size: var(--fs-8);
  margin-block-end: 30px;
}


/*-----------------------------------*\
  #TYPEWRITER EFFECT
\*-----------------------------------*/

/*
 * The typewriter caret is implemented as a border on the `.typed-text` span.
 * By default it uses the current text colour and sits flush against the last
 * character. When blinking, JavaScript toggles the `.caret-hidden` class on
 * this span to hide the border momentarily. Using a border avoids alignment
 * issues when the text wraps onto multiple lines, ensuring the caret always
 * appears at the end of the last line of typed text.
 */

.hero-title {
  /* Preserve layout height when content is temporarily cleared for typing */
  /* The min-height will be set dynamically via JavaScript. */
}

.hero-title .typed-text {
  display: inline;
  border-right: 3px solid currentColor;
  padding-right: 2px;
}

/* Hide the caret by making the border transparent. This class is toggled via JS. */
.hero-title .typed-text.caret-hidden {
  border-color: transparent;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-banner {
  margin-block-end: 30px;
}

.about .section-title {
  margin-inline: 0;
}

.about .underline::before {
  left: 0;
  transform: translateX(0);
}

.about-text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.stats-list {
  display: grid;
  gap: 30px;
}

.stats-card {
  text-align: center;
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.stats-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
}

.stats-text {
  font-size: var(--fs-8);
}

.about-text span {
  color: #1f2470; /* SmarterSolution blauw */
  font-weight: bold;
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list {
  display: grid;
  gap: 30px;
}

.service-card {
  padding: 30px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.service-card .card-icon {
  background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(335, 87%, 53%, 0.12);
  aspect-ratio: 1 / 1;
  max-width: 165px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}


.service-card:hover .card-icon {
  background-color: var(--winter-sky);
}

.service-card .card-icon ion-icon {
  font-size: 5rem;
  color: var(--winter-sky);
  --ionicon-stroke-width: 20px;
  transition: var(--transition-1);
}

.service-card:hover .card-icon ion-icon {
  color: var(--white);
}

.service-card .title {
  text-align: center;
  margin-block-end: 15px;
}

.service-card .text {
  text-align: center;
  margin-block-end: 20px;
}

.service-card .card-btn {
  margin-inline: auto;
  padding: 15px;
  border: 1px solid var(--winter-sky);
  border-radius: 50%;
  color: var(--winter-sky);
  transition: var(--transition-1);
}

.service-card .card-btn:is(:hover, :focus) {
  color: var(--white);
  background-color: var(--winter-sky);
}

/*-----------------------------------*\
  #PRICING
\*-----------------------------------*/

.pricing {
  background: var(--platinum);
  padding: clamp(64px, 9vw, 120px) 0;
}

/* 2-koloms layout met royale witruimte */
.pricing .container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
}

/* Tekstblok links, gecentreerd binnen kolom */
.pricing-content {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

/* Kleine uppercase subtitel met letterspacing */
.pricing .section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--purple-navy);
  /* Volledige kleurdekking voor betere leesbaarheid */
  opacity: 1;
  margin-bottom: 14px;
}

/* Grote headline (donkerblauw) */
.pricing .section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--st-patricks-blue);
  margin: 0 0 16px;
}

/* Subtekst: smalle breedte en rustige kleur */
.pricing .section-text {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--purple-navy);
  /* Volledige kleurdekking voor beter contrast */
  opacity: 1;
  line-height: 1.7;
}

/* Primaire CTA zoals in de mockup */
.pricing .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-inline: auto;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius-12);
  background: var(--ksu-purple);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 8px 24px hsla(226,83%,30%,0.25);
  transition: var(--transition-2);
}

.pricing .btn-primary:hover,
.pricing .btn-primary:focus-visible {
  background: var(--royal-blue-dark);
  transform: scale(0.98);
  box-shadow: 0 12px 28px hsla(226,83%,22%,0.28);
}

/* Illustratie rechts met zachte drop-shadow */
.pricing-banner {
  display: flex;
  justify-content: center;
}
.pricing-banner img {
  width: min(620px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(20, 28, 44, 0.18));
}

/* Mobile: netjes onder elkaar */
@media (max-width: 1024px) {
  .pricing .container { grid-template-columns: 1fr; }
  .pricing-banner { order: 2; }
  .pricing-content { order: 1; }
}


/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.features-list > li:first-child {
  margin-block-end: 30px;
}

.features-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features-card .icon {
  background-image: var(--gradient-1);
  background-size: 200%;
  color: var(--white);
  min-width: max-content;
  max-width: max-content;
  font-size: 36px;
  padding: 22px;
  border-radius: 50%;
}

.features-card .icon ion-icon {
  --ionicon-stroke-width: 20px;
}

.features-card .title {
  margin-block-end: 10px;
}

.features-banner {
  margin-block: 40px;
}

.features-banner > img {
  max-width: max-content;
  margin-inline: auto;
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  padding-block-end: 120px;
}

.case-showcase .container {
  width: 100%;
  max-width: 100%;
}

.case-showcase .blog-list {
  gap: clamp(5px, 0.5vw, 5px) !important;
  grid-template-columns: repeat(auto-fit, minmax(min(520px, 100%), 1fr));
  justify-items: stretch;
}

.blog-list {
  display: grid;
  gap: 30px;
}

.case-card-item {
  width: 100%;
}

.blog-card {
  padding: 20px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
  background-color: var(--white);
}

.blog-card .banner {
  border-radius: var(--radius-12);
  overflow: hidden;
  margin-block-end: 15px;
  aspect-ratio: 3 / 2;
  background-color: var(--cultured);
}

.blog-card .banner img {
  transition: var(--transition-2);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card .banner a:is(:hover, :focus) img {
  transform: scale(1.1);
}

.blog-card .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-6);
  line-height: 1.2;
  margin-block-end: 15px;
}

.blog-card .title > a {
  color: inherit;
}

.blog-card .title > a:is(:hover, :focus) {
  color: var(--razzmatazz);
}

.blog-card .text {
  margin-block-end: 15px;
}

.blog-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-8);
  color: var(--purple-navy);
  font-weight: var(--fw-500);
  padding-block-end: 10px;
  flex-wrap: wrap;
}

.blog-card .meta ion-icon {
  color: var(--winter-sky);
  font-size: 22px;
  --ionicon-stroke-width: 35px;
}
.blog-card .meta .meta-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.blog-card .meta .meta-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-card .meta .read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card .blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-12);
  background-image: var(--gradient-2);
  color: var(--white);
  font-weight: var(--fw-600);
  font-size: var(--fs-8);
  box-shadow: 0 8px 16px hsla(335, 87%, 35%, 0.18);
  transition: var(--transition-2);
}
.blog-card .blog-cta ion-icon {
  font-size: 18px;
  color: inherit;
}
.blog-card .blog-cta:is(:hover, :focus-visible) {
  background-position: right;
  transform: translateY(-1px);
}

.blog-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: var(--transition-2);
  border-radius: 18px;
}

.blog-card-link:hover,
.blog-card-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(20, 30, 70, 0.14);
}

.blog-card-link .title span {
  color: var(--st-patricks-blue);
}
.blog-card-link:hover .title span,
.blog-card-link:focus-visible .title span {
  color: var(--razzmatazz);
}

.blog-card .text {
  line-height: 1.7;
}

.blog-card .meta {
  justify-content: space-between;
}

.blog-card .blog-cta {
  border: 1px solid hsla(335, 87%, 53%, 0.4);
  background: rgba(124, 58, 237, 0.08);
  color: var(--ksu-purple);
  box-shadow: none;
}
.blog-card-link:hover .blog-cta,
.blog-card-link:focus-visible .blog-cta {
  background-image: var(--gradient-2);
  color: var(--white);
  border-color: transparent;
}

.blog-card .blog-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--ksu-purple);
  font-weight: var(--fw-600);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: max-content;
}

.section.blog:not(.case-showcase) .blog-list {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .section.blog:not(.case-showcase) .blog-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
  }

  .section.blog:not(.case-showcase) .blog-card {
    height: 100%;
  }
}

.section.blog:not(.case-showcase) .blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(20, 30, 70, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.section.blog:not(.case-showcase) .blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 6px;
  background-image: var(--gradient-2);
}

.section.blog:not(.case-showcase) .blog-card .content {
  display: grid;
  gap: 12px;
  padding: 20px 20px 18px 26px;
}

.section.blog:not(.case-showcase) .blog-card .title a {
  color: var(--st-patricks-blue);
}

.section.blog:not(.case-showcase) .blog-card .meta {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 12px;
  margin-top: 4px;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.case-card {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  display: block;
}

.case-showcase .blog-card {
  display: block;
}

.case-card-link {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.case-banner {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 25, 0) 30%, rgba(8, 8, 25, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.case-overlay-inner {
  width: 100%;
  color: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-card-link:is(:hover, :focus-visible) .case-overlay {
  opacity: 1;
  visibility: visible;
}

.case-card-link:is(:hover, :focus-visible) .case-image {
  transform: scale(1.03);
}

.case-tag {
  font-size: var(--fs-8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}

.case-title {
  color: var(--white);
  font-size: clamp(var(--fs-5), 3vw, 3rem);
  margin: 0;
}

.case-description {
  font-size: clamp(var(--fs-8), 1.5vw, 1.8rem);
  margin: 0;
}

.case-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--fw-600);
  font-size: var(--fs-8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-cta::after {
  content: "\2192";
  font-size: 1.1em;
}

.case-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-12);
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 0.2s ease;
  pointer-events: none;
}

.case-card-link:focus-visible::after {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .case-showcase .blog-list {
    grid-template-columns: 1fr;
  }
}

.publish-date,
.comment {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment {
  color: inherit;
  margin-inline-start: auto;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  font-size: var(--fs-8);
}

.footer a {
  color: inherit;
}

.footer-top {
  background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/footer-bg.png"), var(--gradient-1);
  background-repeat: no-repeat;
  background-size: auto, 200%;
  background-position: center, center;
  color: var(--white);
}

.footer-brand {
  margin-block-end: 30px;
}

.footer-brand .logo {
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-brand .text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.footer-top .social-link {
  background-color: var(--white);
  color: var(--winter-sky);
  font-size: 18px;
  padding: 8px;
  border-radius: 50%;
}

.footer-top .social-link:is(:hover, :focus) {
  background-image: var(--gradient-2);
  color: var(--white);
}

.footer-list:not(:last-child) {
  margin-block-end: 25px;
}

.footer-list-title {
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-link {
  padding-block: 5px;
}

:is(.footer-link, .footer-item-link):not(address):is(:hover, :focus) {
  text-decoration: underline;
}

.footer-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}

.footer-item-icon {
  background-image: var(--gradient-2);
  padding: 13px;
  border-radius: 50%;
}

.footer-bottom {
  background-color: var(--space-cadet-2);
  padding: 10px;
  text-align: center;
  color: var(--white);
}

.copyright-link {
  display: inline-block;
  text-decoration: underline;
}

.copyright-link:is(:hover, :focus) {
  text-decoration: none;
}

/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background-color: var(--winter-sky);
  color: var(--white);
  font-size: 2rem;
  padding: 14px;
  border-radius: var(--radius-4);
  box-shadow: -3px 3px 15px var(--winter-sky_50);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

  .section-title {
    --fs-3: 3.6rem;
  }

  /**
   * HEADER
   */

  .header .btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline-start: auto;
  }

  /**
   * ABOUT
   */

  .stats-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * BLOG
   */

  .blog-card {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 20px;
    padding: 30px;
  }

  .blog-card .banner {
    margin-block-end: 0;
  }

  .blog-card .banner a {
    height: 100%;
  }

  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:not(:last-child) {
    margin-block-end: 0;
  }

  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 600px;
    display: grid;
    place-items: center;
  }

  .hero-content {
    margin-block-end: 0;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * FEATURES
   */

  .features-list > li:first-child {
    margin-block-end: 0;
  }

  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.4rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 950px;
  }

  /**
   * HEADER
   */

  .header {
    padding-block: 20px;
  }

  .overlay,
  .nav-open-btn,
  .navbar-top {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .header .btn {
    margin-inline-start: 0;
  }

  .navbar-list {
    display: flex;
    gap: 25px;
  }

  .navbar-item:not(:last-child) {
    border-bottom: none;
  }

  .navbar-link {
    color: var(--color);
  }

  /**
   * HERO
   */

  .hero {
    min-height: 700px;
  }

  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * FEATURES
   */

  .features-list {
    grid-template-columns: 1fr;
  }

  .features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .features .section-title {
    grid-column: 1 / 4;
  }

  .features-banner {
    margin-block: 0;
    display: grid;
    place-items: center;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
  }

  .footer-brand .text {
    max-width: 45ch;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1200px;
  }

  .section-title {
    --fs-3: 4.6rem;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 800px;
  }

  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card {
    height: 100%;
  }

  .blog-card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .case-showcase .blog-card {
    display: block;
    height: auto;
  }

  .case-showcase .container {
    max-width: 1600px;
  }

  .case-showcase .blog-list {
    grid-template-columns: repeat(2, minmax(600px, 1fr));
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: 1fr 0.5fr 0.7fr 0.5fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/**
 * Section reveal animation
 */
.section-reveal {
  opacity: 0;
  transform: translateY(3rem);
}

.section-reveal.reveal-ready {
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal,
  .section-reveal.reveal-ready {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


