:root {
  --blue: #18aee8;
  --blue-dark: #078fc9;
  --ink: #0a0a0b;
  --dark: #111315;
  --gold: #f7bd12;
  --muted: #666;
  --max: 1270px;
}
.whatsapp-btn {
  background-color: #25d366;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.site-header {
  height: 84px;
  background: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #eee;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
}
.logo {
  width: 128px;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 600;
  font-size: 17px;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}
.nav-links a.active:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 2px;
  background: var(--blue);
}
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 27px;
  cursor: pointer;
}
.hero {
  min-height: 684px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #202426;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.56) 46%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    url("assets/hero.webp") center/cover no-repeat;
  transform: scale(1.04);
}
.hero-inner {
  position: relative;
  min-height: 684px;
  display: flex;
  align-items: center;
}
.hero-content {
  color: #fff;
  width: 70%;
  padding: 72px 0;
}
.eyebrow {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
}
.hero h1 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(72px, 8.6vw, 132px);
  line-height: 0.86;
  margin: 0 0 30px;
  letter-spacing: -2px;
  max-width: 850px;
}
.hero p {
  font-size: 20px;
  line-height: 1.35;
  max-width: 560px;
  margin: 0 0 34px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  min-height: 48px;
  font-weight: 600;
  transition: 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn-outline {
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #111;
}
.btn-dark {
  background: #111;
  color: #fff;
  border-color: #111;
  margin-top: 18px;
}
.btn-dark:hover {
  background: #292929;
}
.hero-points {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 230px;
  display: grid;
  gap: 26px;
  color: #fff;
}
.hero-points strong {
  display: block;
  font-size: 17px;
}
.hero-points span {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  color: #f2f2f2;
}
.section {
  padding: 86px 0;
}
.section-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 8px;
}
.section-title {
  font-size: 46px;
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}
.section-copy {
  font-size: 17px;
  line-height: 1.65;
  color: #444;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 65px;
  align-items: center;
}
.about-copy {
  max-width: 560px;
}
.about-visual {
  height: 610px;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats {
  display: flex;
  gap: 32px;
  margin-top: 45px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  gap: 9px;
  align-items: center;
}
.stat b {
  font-family: "Barlow Condensed";
  font-size: 33px;
  line-height: 1;
}
.stat span {
  font-size: 12px;
  line-height: 1.05;
  max-width: 75px;
}
.services-wrap {
  background: #fafafa;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.text-link {
  font-weight: 700;
  color: #111;
}
.text-link:hover {
  color: var(--blue);
}
.service-grid {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
}
.service-card {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid #ededed;
  padding: 26px 20px;
  min-height: 220px;
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}
.service-icon {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 15px;
  margin: 0 0 7px;
}
.service-card p {
  font-size: 12px;
  line-height: 1.55;
  color: #666;
  margin: 0 0 17px;
}
.service-card a {
  font-size: 11px;
  font-weight: 700;
}
.project-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #ddd;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.project-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.82));
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-card h3 {
  position: absolute;
  left: 22px;
  bottom: 43px;
  color: #fff;
  z-index: 2;
  font-size: 22px;
  margin: 0;
}
.project-card span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: #ddd;
  z-index: 2;
  font-size: 12px;
}
.process {
  background: var(--dark);
  color: #fff;
  padding: 54px 0;
}
.process-label {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}
.process-title {
  font-size: 26px;
  margin: 2px 0 32px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process-item {
  position: relative;
}
.process-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 27px;
  left: 72px;
  right: -10px;
  height: 1px;
  background: #3a3d3f;
}
.process-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.process-item b {
  display: block;
  font-size: 16px;
}
.process-item small {
  display: block;
  color: #bbb;
  line-height: 1.45;
  margin-top: 4px;
  max-width: 190px;
}
.blog-section {
  background: #fff;
}
.news-head {
  align-items: flex-end;
}
.news-intro {
  max-width: 720px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0 0;
}
.news-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.feed-status {
  font-size: 12px;
  color: #666;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20a464;
  display: inline-block;
}
.feed-status.error .status-dot {
  background: #d84b4b;
}
.refresh-news {
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.refresh-news:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.refresh-news:disabled {
  opacity: 0.55;
  cursor: wait;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
  }

  .news-card {
    flex: 0 0 85%;
  }
}
.blog-card {
  border: 1px solid #eee;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-image {
  height: 190px;
  background: url("assets/blog-placeholder.svg") center/cover no-repeat;
  overflow: hidden;
  display: block;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s;
}
.blog-card:hover .blog-image img {
  transform: scale(1.04);
}
.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.blog-date {
  font-size: 11px;
  color: #888;
  margin-top: 5px;
}
.blog-card h3 {
  font-size: 19px;
  line-height: 1.28;
  margin: 9px 0;
}
.blog-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.blog-card a {
  font-weight: 700;
  font-size: 13px;
  margin-top: auto;
}
.blog-card a:hover {
  color: var(--blue);
}
.news-source {
  color: #888;
  font-size: 11px;
  margin-top: 12px;
}
.news-skeleton {
  border: 1px solid #eee;
  overflow: hidden;
  background: #fff;
}
.news-skeleton > div:first-child {
  height: 190px;
  background: linear-gradient(90deg, #eee, #f8f8f8, #eee);
  background-size: 200% 100%;
  animation: skeleton 1.4s infinite;
}
.news-skeleton > div:last-child {
  padding: 22px;
}
.news-skeleton span {
  height: 11px;
  background: #eee;
  display: block;
  margin-bottom: 12px;
  animation: skeleton 1.4s infinite;
}
.news-skeleton span:nth-child(2) {
  height: 20px;
  width: 90%;
}
.news-skeleton span:nth-child(3) {
  height: 38px;
  width: 100%;
}
.news-empty {
  grid-column: 1/-1;
  border: 1px dashed #ddd;
  padding: 40px;
  text-align: center;
  display: grid;
  gap: 8px;
  color: #444;
}
.news-empty span {
  font-size: 13px;
  color: #888;
}
.feed-footer {
  font-size: 11px;
  color: #888;
  margin-top: 20px;
}
.feed-footer a {
  color: #555;
  text-decoration: underline;
}
.feed-footer a:hover {
  color: var(--blue);
}
@keyframes skeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.contact-section {
  background: #111315;
  color: #fff;
  padding: 86px 0;
}
.contact-section .section-title {
  color: #fff;
}
.light-copy {
  color: #c6c6c6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-card {
  background: #050607;
  padding: 28px;
  margin-top: 30px;
}
.contact-row {
  display: flex;
  gap: 18px;
  margin: 22px 0;
}
.contact-row .icon {
  color: var(--gold);
  font-size: 21px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-row .icon img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) saturate(100%) invert(46%) sepia(92%) saturate(719%)
    hue-rotate(166deg) brightness(93%) contrast(91%);
}
.contact-row strong {
  display: block;
}
.contact-row span {
  color: #bbb;
  font-size: 14px;
}
.form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #444;
  background: #fff;
  color: #111;
  padding: 14px 15px;
  outline: none;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
}
.field textarea {
  min-height: 145px;
  resize: vertical;
}
.form-message {
  display: none;
  padding: 12px;
  background: #eaf8ef;
  color: #176b39;
  font-size: 13px;
}
.form-message.show {
  display: block;
}
.newsletter-message {
  color: #7fd7a0;
  font-size: 12px;
  margin-top: 9px;
}
.footer {
  background: #050607;
  color: #fff;
  padding: 58px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 70px;
}
.footer-logo {
  width: 155px;
}
.footer p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.55;
  max-width: 310px;
}
.footer h3 {
  font-size: 17px;
  margin: 0 0 10px;
}
.footer-links {
  display: grid;
  gap: 9px;
  color: #bbb;
  font-size: 14px;
}
.footer-links a:hover {
  color: #fff;
}
.newsletter {
  display: flex;
  margin-top: 18px;
}
.newsletter input {
  flex: 1;
  padding: 14px;
  border: 0;
  outline: 0;
}
.newsletter button {
  border: 0;
  background: var(--blue);
  color: #fff;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}
.copyright {
  border-top: 1px solid #252525;
  margin-top: 45px;
  padding-top: 18px;
  color: #777;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
  z-index: 100;
}
.modal.open {
  display: flex;
}
.modal-box {
  background: #fff;
  width: min(780px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 30px;
  position: relative;
}
.close {
  position: absolute;
  right: 16px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 30px;
  cursor: pointer;
}
.modal-kicker {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
}
.modal-box h2 {
  margin: 4px 0 18px;
  font-size: 32px;
}
.modal-main {
  width: 100%;
  height: 410px;
  object-fit: cover;
}
.modal-gallery {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.modal-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  flex: 1;
  padding: 2px;
}
.modal-thumbs::-webkit-scrollbar {
  display: none;
}
.modal-thumb {
  flex: 0 0 92px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  background: #eee;
  cursor: pointer;
  opacity: 0.65;
}
.modal-thumb.active,
.modal-thumb:hover {
  border-color: var(--blue);
  opacity: 1;
}
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-gallery-arrow {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--dark);
  font-size: 18px;
  cursor: pointer;
}
.modal-gallery-arrow:hover {
  background: var(--blue);
  color: #fff;
}
.modal-box p {
  color: #666;
}
.no-scroll {
  overflow: hidden;
}
@media (max-width: 1000px) {
  .nav-links {
    gap: 20px;
  }
  .hero-content {
    width: 80%;
  }
  .hero-points {
    width: 190px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    height: 470px;
  }
  .service-grid {
    overflow-x: auto;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }
  .process-item:nth-child(3):after,
  .process-item:nth-child(5):after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 72px;
  }
  .container {
    width: min(var(--max), calc(100% - 30px));
  }
  .site-header {
    height: 72px;
  }
  .logo {
    width: 105px;
  }
  .menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
  }
  .hero,
  .hero-inner {
    min-height: 720px;
  }
  .hero:before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.45)),
      url("assets/hero.webp") center/cover;
  }
  .hero-inner {
    display: block;
    padding-top: 40px;
  }
  .hero-content {
    width: 100%;
    padding: 55px 0 0;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-points {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 42px;
  }
  .hero-points strong {
    font-size: 14px;
  }
  .hero-points span {
    font-size: 12px;
  }
  .section {
    padding: 62px 0;
  }
  .section-title {
    font-size: 38px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .news-controls {
    justify-content: flex-start;
  }
  .project-track,
  .blog-grid,
  .news-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    height: 240px;
  }
  .service-grid {
    overflow-x: auto;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-item:after {
    display: none !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .copyright {
    flex-direction: column;
  }
  .about-visual {
    height: 390px;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 18% 100%, 0 50%);
  }
}
@media (max-width: 430px) {
  .service-grid {
    overflow-x: auto;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 320px;
  }
}

/* About image carousel */
.about-carousel {
  position: relative;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 28% 100%, 0 50%);
  background: #ddd;
  isolation: isolate;
}
.about-slides {
  position: absolute;
  inset: 0;
}
.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}
.about-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}
.about-overlay {
  position: absolute;
  z-index: 2;
  left: 31%;
  right: 30px;
  bottom: 34px;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.45s 0.12s;
}
.about-slide.is-active .about-overlay {
  opacity: 1;
  transform: none;
}
.about-overlay span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.about-overlay strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 31px;
  line-height: 0.98;
  max-width: 390px;
}
.about-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.about-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.about-prev {
  left: 31%;
}
.about-next {
  right: 18px;
}
.about-dots {
  position: absolute;
  z-index: 4;
  left: 31%;
  bottom: 18px;
  display: flex;
  gap: 7px;
}
.about-dot {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
}
.about-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}
@media (max-width: 720px) {
  .about-visual {
    height: 390px;
    clip-path: none;
    border-radius: 0;
    overflow: hidden;
  }
  .about-overlay {
    left: 24px;
    right: 24px;
    bottom: 48px;
  }
  .about-overlay strong {
    font-size: 29px;
    max-width: 330px;
  }
  .about-prev {
    left: 14px;
  }
  .about-next {
    right: 14px;
  }
  .about-dots {
    left: 50%;
    bottom: 17px;
    transform: translateX(-50%);
  }
}
@media (max-width: 430px) {
  .about-visual {
    height: 320px;
  }
  .about-overlay {
    bottom: 43px;
  }
  .about-overlay strong {
    font-size: 25px;
  }
  .about-arrow {
    width: 38px;
    height: 38px;
  }
  .about-prev {
    left: 10px;
  }
  .about-next {
    right: 10px;
  }
}

.icons {
  width: 30px;
}

.newsletter-message {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0;
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.newsletter-message.show {
  opacity: 1;
  transform: translateY(0);
}
