.grecaptcha-badge {
  visibility: hidden;
}

html {
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: "Inter", sans-serif !important;
  padding: 0;
  margin: 0;
  background-color: #111;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RalewayDots";
  src: url("../fonts/RalewayDots.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
.container {
  margin: 0 auto;
  max-width: 1600px;
  width: 85%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif !important;
  font-weight: 400;
}

.raleway {
  font-family: "Raleway", sans-serif !important;
  font-weight: 200;
  text-transform: uppercase;
}

.raleway-dots {
  font-family: "RalewayDots", sans-serif !important;
  text-transform: uppercase;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(15px, 2vw, 30px) clamp(20px, 5vw, 40px);
  box-sizing: border-box;
  z-index: 1002;
  transition: all 0.35s ease;
}

.logo,
.burger {
  transition: all 0.35s ease;
}

.header.scrolled .logo,
.header.scrolled .burger {
  background: #5b8def;
}

.logo {
  width: 42px;
  padding: 4px;
}

.burger {
  width: 50px;
  height: 50px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 1003;
}
.burger span {
  display: block;
  height: 2px;
  background: #f8f9fc;
  position: absolute;
  transition: 0.3s ease;
}
.burger span:first-child {
  width: 24px;
  top: 18px;
  right: 6px;
}
.burger span:last-child {
  width: 24px;
  top: 30px;
  left: 6px;
}
.burger.active span {
  top: 50%;
  left: 50%;
  right: auto;
}
.burger.active span:first-child {
  width: 40px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger.active span:last-child {
  width: 40px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: #1a1d21;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}
.fullscreen-menu a {
  color: #f8f9fc;
  text-decoration: none;
  font-size: 48px;
  font-family: "Raleway", sans-serif;
}

.menu-link {
  position: relative;
  color: #f8f9fc;
  text-decoration: none;
  font-size: 48px;
  font-family: "Raleway", sans-serif;
  padding: 0 10px;
  z-index: 1;
}
.menu-link::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -10px;
  width: calc(100% + 10px);
  height: 22px;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.menu-link:hover::after {
  transform: translateY(-50%) scaleX(1);
}

.link-home::after {
  background: #d94f70;
}

.link-about::after {
  background: #5b8def;
}

.link-projects::after {
  background: #7c5ce6;
}

.link-services::after {
  background: #4f8f6b;
}

.link-contact::after {
  background: #d96a4a;
}

.first-screen {
  height: 100vh;
  height: 100svh;
  min-height: -webkit-fill-available;
  overflow: hidden;
  position: relative;
  background-image: url("../img/back-kerndigital.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f8f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.first-screen .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 1vw, 10px);
}
.title h1 {
  font-size: clamp(1rem, 2vw, 1.5rem);
}
.title p {
  margin: 0;
  font-size: clamp(0.5rem, 1vw, 0.7rem);
}

.center {
  text-align: center;
}

.slogan {
  font-size: clamp(3.2rem, 8vw, 6rem);
  margin: 0;
  padding: 30px 0;
  line-height: 1.1;
}

.reveal-left {
  opacity: 0;
  transition: all 1.4s ease;
  transform: translateX(-80px);
}
.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transition: all 1.4s ease;
  transform: translateX(80px);
}
.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transition: all 1.4s ease;
  transform: translateY(50px);
}
.reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}

.line {
  display: block;
}
.line:nth-child(1) {
  transition-delay: 0.2s;
}
.line:nth-child(2) {
  transition-delay: 0.6s;
}
.line:nth-child(3) {
  transition-delay: 1s;
}
.line:nth-child(4) {
  transition-delay: 1.4s;
}
.line:nth-child(5) {
  transition-delay: 1.8s;
}

.scroll-down {
  position: absolute;
  bottom: clamp(20px, 5vw, 50px);
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  animation: fadeInArrow 1s ease forwards;
  animation-delay: 3s;
}
.scroll-down span {
  position: relative;
  width: 1px;
  height: 40px;
  background: white;
  animation: floatArrow 2s ease-in-out infinite;
  animation-delay: 3s;
}
.scroll-down span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes fadeInArrow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes floatArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}
.about {
  background: #f8f9fc;
  color: #111;
  height: 100vh;
  height: 100svh;
  min-height: -webkit-fill-available;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about .reveal-left:nth-child(1),
.about .reveal-right:nth-child(1),
.about .reveal-up:nth-child(1) {
  transition-delay: 0.1s;
}
.about .reveal-left:nth-child(2),
.about .reveal-right:nth-child(2),
.about .reveal-up:nth-child(2) {
  transition-delay: 0.35s;
}
.about .reveal-left:nth-child(3),
.about .reveal-right:nth-child(3),
.about .reveal-up:nth-child(3) {
  transition-delay: 0.6s;
}
.about .reveal-left:nth-child(4),
.about .reveal-right:nth-child(4),
.about .reveal-up:nth-child(4) {
  transition-delay: 0.85s;
}
.about .reveal-left:nth-child(5),
.about .reveal-right:nth-child(5),
.about .reveal-up:nth-child(5) {
  transition-delay: 1.1s;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.section-label {
  display: inline-block;
  font-weight: 400;
  margin-bottom: 20px;
  color: #5b8def;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-left: 3px;
}

.about h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.about-content {
  max-width: 650px;
}
.about-content p {
  font-size: clamp(1rem, 1.4vw, 1.6rem);
  line-height: 1.7;
  margin: 0 0 24px;
}

.btn-link {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 4px solid #5b8def;
  padding-bottom: 6px;
  transition: 0.3s ease;
  color: #111;
}
.btn-link:hover {
  color: #5b8def;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
}
.projects {
  background: #e9ebf2;
  color: #111;
  padding: clamp(80px, 10vw, 160px) 0;
}

.projects-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.projects-heading {
  max-width: 500px;
}
.projects-heading h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.95;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.projects-heading p {
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  line-height: 1.7;
  color: #1a1d21;
  margin: 0 0 30px;
}

.project-featured {
  display: block;
  text-decoration: none;
  color: #111;
}
.project-featured .project-featured-info {
  padding-top: 28px;
}
.project-featured .project-featured-info span {
  display: inline-block;
  color: #5b8def;
  font-size: clamp(0.78rem, 3vw, 0.9rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.project-featured .project-featured-info h3 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.6rem, 3vw, 3.4rem);
  margin: 0 0 14px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.project-featured .project-featured-info p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.7;
  color: #1a1d21;
  margin: 0;
  max-width: 650px;
}
.project-featured:hover h3 {
  color: #5b8def;
}

.project-image {
  overflow: hidden;
  border-radius: 28px;
}
.project-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.project-featured:hover .project-image img,
.project-card:hover .project-image img {
  transform: scale(1.03);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 50px);
}

.project-card {
  display: block;
  text-decoration: none;
  color: #111;
}

.project-info {
  padding: 24px 6px 0;
}
.project-info span {
  display: inline-block;
  color: #5b8def;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.project-info h3 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  margin: 0 0 10px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.project-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1d21;
  margin: 0;
}

.project-card:hover h3 {
  color: #5b8def;
}

@media (max-width: 1024px) {
  .projects-hero {
    grid-template-columns: 1fr;
  }
  .projects-heading {
    max-width: 100%;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .projects {
    padding: 80px 0;
  }
  .projects-hero {
    gap: 50px;
    margin-bottom: 70px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .projects-heading h2 {
    font-size: clamp(2rem, 10vw, 4rem);
  }
  .project-image {
    border-radius: 20px;
  }
  .project-featured-info,
  .project-info {
    padding: 22px 4px 0;
  }
  .project-featured-info span,
  .project-info span {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }
  .project-featured-info h3,
  .project-info h3 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
    line-height: 1;
    margin: 0 0 12px;
  }
  .project-featured-info p,
  .project-info p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.services {
  background: #f8f9fc;
  color: #111;
  padding: clamp(80px, 10vw, 160px) 0;
}

.services-heading {
  max-width: 900px;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.services-heading h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.95;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.services-heading p {
  max-width: 650px;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.service-card {
  background: #f8f9fc;
  padding: clamp(28px, 4vw, 55px);
  min-height: 300px;
  transition: 0.35s ease;
}
.service-card span {
  display: inline-block;
  color: #5b8def;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
.service-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.service-card:hover {
  background: #f8f9fc;
  transform: translateY(-6px);
}
.service-card:hover h3 {
  color: #5b8def;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
}
.contact {
  background: #1a1d21;
  color: #f8f9fc;
  padding: clamp(90px, 10vw, 170px) 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.contact-info h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.95;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.contact-info p {
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 45px;
}
.contact-details a {
  color: #f8f9fc;
  text-decoration: none;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  transition: 0.3s ease;
}
.contact-details a:hover {
  color: #5b8def;
}

.contact-form {
  background: rgba(0, 0, 0, 0.21);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(28px, 4vw, 55px);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 16px 0;
  color: #f8f9fc;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #5b8def;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form button {
  align-self: flex-start;
  margin-top: 20px;
  border: none;
  background: #5b8def;
  color: #f8f9fc;
  padding: 16px 32px;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-form button:hover {
  transform: translateY(-3px);
  background: rgb(114.2333333333, 157.15, 241.2666666667);
}

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

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}
.contact-social a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}
.contact-social a:hover {
  color: #f8f9fc;
  border-color: #5b8def;
}

.form-messages {
  margin-top: 20px;
}
.form-messages p {
  margin: 0;
  font-size: 0.95rem;
}
.form-messages .success {
  color: #8ff0a4;
}
.form-messages .error {
  color: #ff7a7a;
}

.error-page {
  background: #e9ebf2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 12vw, 180px) 0;
}

.error-inner {
  max-width: 900px;
}
.error-inner h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.85;
  text-transform: uppercase;
  margin: 0 0 30px;
}
.error-inner p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.7;
  color: #1a1d21;
}

@media (max-width: 768px) {
  .error-inner h1 {
    font-size: clamp(3rem, 18vw, 6rem);
  }
  .error-inner p {
    font-size: 1rem;
  }
}
.footer {
  background: #111;
  color: #f8f9fc;
  padding: clamp(60px, 8vw, 100px) 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.5fr 0.5fr;
  gap: clamp(40px, 6vw, 90px);
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 520px;
}
.footer-brand h3 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0 0 20px;
}
.footer-brand span {
  color: #5b8def;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h4 {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-links a:hover {
  color: #5b8def;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
.about-page-hero {
  background-image: url("../img/back-kerndigital.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f8f9fc;
  display: flex;
  align-items: center;
  padding: clamp(100px, 12vw, 180px) 0;
}
.about-page-hero h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  margin: 0 0 35px;
  text-transform: uppercase;
  max-width: 1100px;
}
.about-page-hero p {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.7;
  margin: 0;
}
.about-page-hero .section-label {
  color: #f8f9fc;
}

.about-story {
  background: #f8f9fc;
  color: #111;
  padding: clamp(80px, 10vw, 160px) 0;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.about-founders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.founder-card {
  background: #e9ebf2;
  padding: 18px;
  text-align: center;
}
.founder-card img {
  width: 100%;
  aspect-ratio: 3/3;
  object-fit: cover;
  display: block;
  margin-bottom: 22px;
}
.founder-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.founder-card p {
  color: #5b8def;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-story-content {
  max-width: 760px;
}
.about-story-content h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 0.92;
  margin: 0 0 30px;
  text-transform: uppercase;
}
.about-story-content p {
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.75;
  color: #1a1d21;
  margin: 0 0 26px;
}
.about-story-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-founders {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-story-content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about-story {
    padding: 80px 0;
  }
  .about-founders {
    grid-template-columns: 1fr;
  }
  .about-story-content h2 {
    font-size: clamp(2rem, 10vw, 4rem);
  }
  .about-story-content p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.about-services {
  background: #e9ebf2;
  color: #111;
  padding: clamp(80px, 10vw, 160px) 0;
}

.about-section-heading {
  max-width: 900px;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.about-section-heading h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.about-service-card {
  background: #e9ebf2;
  padding: clamp(28px, 3vw, 48px);
  min-height: 280px;
  transition: 0.35s ease;
}
.about-service-card span {
  display: inline-block;
  color: #5b8def;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 35px;
}
.about-service-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  transition: 0.3s ease;
}
.about-service-card p {
  color: #1a1d21;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}
.about-service-card:hover {
  background: #f8f9fc;
  transform: translateY(-6px);
}
.about-service-card:hover h3 {
  color: #5b8def;
}

.about-process {
  background: #111;
  color: #f8f9fc;
  padding: clamp(90px, 10vw, 170px) 0;
}

.about-process-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}
.about-process-inner h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.process-item {
  background: #111;
  padding: clamp(28px, 4vw, 48px);
}
.process-item span {
  display: inline-block;
  color: #5b8def;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.process-item p {
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.3;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.about-clients {
  background: #f8f9fc;
  color: #111;
  padding: clamp(90px, 10vw, 170px) 0;
}
.about-clients h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.3rem, 6vw, 6.5rem);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
  max-width: 1250px;
}

.about-cta {
  background: #e9ebf2;
  color: #111;
  padding: clamp(90px, 10vw, 160px) 0;
  text-align: center;
}
.about-cta h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 auto 40px;
  max-width: 1100px;
}

@media (max-width: 1200px) {
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .about-process-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-page-hero {
    min-height: auto;
    padding: 130px 0 90px;
  }
  .about-services,
  .about-process,
  .about-clients,
  .about-cta {
    padding: 80px 0;
  }
  .about-services-grid {
    grid-template-columns: 1fr;
  }
  .about-service-card {
    min-height: auto;
  }
  .about-page-hero h1,
  .about-section-heading h2,
  .about-process-inner h2,
  .about-clients h2,
  .about-cta h2 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
}
.projects-page-hero {
  background-image: url("../img/back-kerndigital.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f8f9fc;
  display: flex;
  align-items: center;
  padding: clamp(120px, 12vw, 190px) 0 clamp(80px, 8vw, 140px);
}
.projects-page-hero h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  margin: 0 0 35px;
  text-transform: uppercase;
  max-width: 1100px;
}
.projects-page-hero p {
  max-width: 720px;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.7;
  margin: 0;
}
.projects-page-hero .section-label {
  color: #f8f9fc;
}

.projects-page-featured {
  background: #f8f9fc;
  padding: clamp(80px, 10vw, 160px) 0;
}

.featured-project-page {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  text-decoration: none;
  color: #111;
}

.featured-project-image {
  overflow: hidden;
  border-radius: 32px;
}
.featured-project-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.featured-project-content span {
  display: inline-block;
  color: #5b8def;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.featured-project-content h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 24px;
  transition: 0.3s ease;
}
.featured-project-content p {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.7;
  color: #1a1d21;
  margin: 0;
}

.featured-project-page:hover img {
  transform: scale(1.03);
}
.featured-project-page:hover h2 {
  color: #5b8def;
}

.projects-page-list {
  background: #e9ebf2;
  padding: clamp(80px, 10vw, 160px) 0;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px);
}

.projects-page-cta {
  background: #1a1d21;
  color: #f8f9fc;
  text-align: center;
  padding: clamp(90px, 10vw, 160px) 0;
}
.projects-page-cta h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 auto 40px;
  max-width: 1000px;
}
.projects-page-cta .btn-link {
  color: #f8f9fc;
}

@media (max-width: 1024px) {
  .featured-project-page {
    grid-template-columns: 1fr;
  }
  .projects-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .projects-page-hero {
    min-height: auto;
    padding: 130px 0 80px;
  }
  .projects-page-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.5rem);
  }
  .projects-page-featured,
  .projects-page-list,
  .projects-page-cta {
    padding: 80px 0;
  }
  .projects-page-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .featured-project-image {
    border-radius: 20px;
  }
  .featured-project-content h2 {
    font-size: clamp(2rem, 10vw, 4rem);
  }
  .featured-project-content p {
    font-size: 1rem;
  }
}
.project-detail-hero {
  background: #e9ebf2;
  padding: clamp(130px, 14vw, 220px) 0 80px;
}

.project-detail-heading {
  max-width: 950px;
}
.project-detail-heading h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  margin: 0 0 30px;
  text-transform: uppercase;
}
.project-detail-heading p {
  max-width: 700px;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.7;
  color: #1a1d21;
  margin: 0;
}

.project-detail-cover {
  background: #f8f9fc;
}

.project-detail-main-image {
  border-radius: 32px;
  overflow: hidden;
}
.project-detail-main-image img {
  width: 100%;
  display: block;
}

.project-detail-content {
  background: #f8f9fc;
  padding: clamp(80px, 8vw, 140px) 0;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.project-detail-sidebar {
  position: sticky;
  top: 140px;
}

.project-meta-block {
  margin-bottom: 35px;
}
.project-meta-block span {
  display: inline-block;
  color: #5b8def;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.project-meta-block p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #111;
}

.project-detail-main {
  max-width: 760px;
}

.project-section {
  margin-bottom: 70px;
}
.project-section:last-child {
  margin-bottom: 0;
}
.project-section h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 25px;
}
.project-section p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.8;
  color: #1a1d21;
  margin: 0 0 22px;
}
.project-section p:last-child {
  margin-bottom: 0;
}

.project-gallery {
  background: #e9ebf2;
  padding: clamp(80px, 10vw, 160px) 0;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 50px);
  margin-top: 50px;
}

.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

.project-cta {
  background: #1a1d21;
  color: #f8f9fc;
  text-align: center;
  padding: clamp(90px, 10vw, 160px) 0;
}
.project-cta h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 auto 35px;
  max-width: 900px;
}
.project-cta .btn-link {
  color: #f8f9fc;
}

@media (max-width: 1024px) {
  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-detail-grid {
    grid-template-columns: 1fr;
  }
  .project-detail-sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  .project-detail-hero {
    padding: 130px 0 60px;
  }
  .project-detail-cover,
  .project-detail-content,
  .project-gallery,
  .project-cta {
    padding: 80px 0;
  }
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }
  .project-detail-main-image,
  .gallery-item {
    border-radius: 20px;
  }
  .project-section {
    margin-bottom: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
