* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: #050505;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #2f80ed;
  z-index: 9999;
}

.navbar {
  height: 72px;
  padding: 0 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
  font-size: 16px;
  background: white;
  position: relative;
  z-index: 10;
}

.logo {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b63, #2f80ed);
  box-shadow: 12px 0 0 #050505;
  animation: logoBounce 2.5s ease-in-out infinite;
}

@keyframes logoBounce {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(15deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  transition: transform 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: -6px;
  background: #050505;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

section {
  padding: 150px 9%;
}

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
}

.page-hero {
  min-height: 480px;
}

.decorated-hero {
  position: relative;
  overflow: hidden;
}

.decorated-hero::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 90px;
  width: 150px;
  height: 150px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  transform: rotate(12deg);
  animation: heroBoxFloat 5s ease-in-out infinite;
}

@keyframes heroBoxFloat {
  0%, 100% {
    transform: rotate(12deg) translateY(0);
  }

  50% {
    transform: rotate(20deg) translateY(-18px);
  }
}

.dark {
  background: #020202;
  color: #ffffff;
}

.blue {
  background: #2f80ed;
  color: #ffffff;
}

.coral {
  background: #ff6b63;
  color: #ffffff;
}

.dark,
.blue,
.coral {
  position: relative;
  overflow: hidden;
}

.dark::before,
.blue::before,
.coral::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
  animation: dotMove 16s linear infinite;
}

.dark > *,
.blue > *,
.coral > * {
  position: relative;
  z-index: 1;
}

@keyframes dotMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 120px 120px;
  }
}

h1 {
  font-size: 88px;
  line-height: 1.05;
  margin-bottom: 34px;
}

h2 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 26px;
}

h3 {
  font-size: 30px;
  margin-bottom: 24px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  animation: fadeUp 1s ease both;
}

.hero-badge.light {
  border: 1px solid #cccccc;
}

.hero-line {
  width: 120px;
  height: 4px;
  background: #ff6b63;
  margin: 0 0 32px 0;
  border-radius: 999px;
}

.hero-line.white {
  background: white;
}

.hero h1 {
  animation: heroTextIn 1s ease both;
}

.hero p,
.hero .btn-row {
  animation: fadeUp 1s ease both;
}

.hero p {
  animation-delay: 0.15s;
}

.hero .btn-row {
  animation-delay: 0.3s;
}

@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
    letter-spacing: -6px;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-row {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 16px;
  text-align: center;
  transition: 0.35s ease;
}

.btn-red {
  background: #ff6b63;
  color: #ffffff;
}

.btn-blue {
  background: #2f80ed;
  color: #ffffff;
}

.btn-black {
  background: #000000;
  color: #ffffff;
}

.image-box {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
}

.image-hover {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s ease, transform 0.25s ease;
}

.image-hover:hover {
  box-shadow: 0 26px 70px rgba(0,0,0,0.18);
}

.image-hover .image-box {
  transition: 0.5s ease;
}

.image-hover:hover .image-box {
  transform: scale(1.04);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
  text-align: center;
  padding: 40px;
  backdrop-filter: blur(4px);
}

.image-overlay h2 {
  color: white;
  font-size: 60px;
  margin: 0;
  transform: translateY(24px) scale(0.95);
  transition: 0.4s ease;
}

.image-hover:hover .image-overlay {
  opacity: 1;
}

.image-hover:hover .image-overlay h2 {
  transform: translateY(0) scale(1);
}

.img-wide {
  height: 900px;
}

.img-mid {
  height: 600px;
}

.img-small {
  height: 600px;
}

.about-hero-image {
  height: 600px;
  background-position: center;
}

.about-strength-image {
  height: 620px;
  background-position: center;
}

.space-top {
  margin-top: 40px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex: none;
}

.trusted {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin-bottom: 80px;
  font-size: 22px;
}

.trusted span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  background: #eeeeee;
  padding: 54px;
  min-height: 380px;
  transition: 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.card.round {
  border-radius: 20px;
}

.card-red {
  background: #ff6b63;
  color: #ffffff;
}

.card-blue {
  background: #2f80ed;
  color: #ffffff;
}

.shape-brand,
.shape-mission {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), transparent 18%),
  conic-gradient(from 45deg, #ff6b63, #ff9a94, #ff6b63);
  clip-path: polygon(50% 0%, 62% 35%, 100% 35%, 70% 57%, 82% 100%, 50% 72%, 18% 100%, 30% 57%, 0% 35%, 38% 35%);
  animation: starPulse 4s ease-in-out infinite;
}

.shape-brand::after,
.shape-mission::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: orbitRotate 7s linear infinite;
}

.shape-web,
.shape-values {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 40px;
  background:
  linear-gradient(rgba(255,255,255,0.35) 2px, transparent 2px),
  linear-gradient(90deg, rgba(255,255,255,0.35) 2px, transparent 2px),
  #2f80ed;
  background-size: 28px 28px;
  border-radius: 20px;
  animation: gridSlide 4s linear infinite;
}

.shape-web::after,
.shape-values::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: orbitDot 2s ease-in-out infinite;
}

.shape-print,
.shape-promise {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 40px;
  background: linear-gradient(135deg,#e2e2e2,#bbbbbb);
  border-radius: 12px;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 0 100%);
  animation: paperFloat 3.5s ease-in-out infinite;
}

.shape-print::after,
.shape-promise::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.55);
  clip-path: polygon(0 0,100% 100%,0 100%);
}

.shape-discover {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 30px;
  border-radius: 50%;
  border: 10px solid #ff6b63;
  animation: searchMove 3.8s ease-in-out infinite;
}

.shape-discover::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 10px;
  background: #ff6b63;
  right: -32px;
  bottom: 2px;
  border-radius: 999px;
  transform: rotate(45deg);
}

.shape-design {
  position: relative;
  width: 120px;
  height: 32px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg,#2f80ed,#0c57cc);
  transform: rotate(-28deg);
  animation: penDraw 3s ease-in-out infinite;
}

.shape-design::before {
  content: "";
  position: absolute;
  right: -24px;
  top: 0;
  border-left: 28px solid #050505;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.shape-deliver {
  position: relative;
  width: 82px;
  height: 82px;
  margin-bottom: 30px;
  background: linear-gradient(135deg,#d8d8d8,#b5b5b5);
  clip-path: polygon(14% 52%, 36% 74%, 86% 20%, 100% 34%, 38% 96%, 0 64%);
  animation: checkPop 3s ease-in-out infinite;
}

.shape-deliver::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(0,0,0,0.15);
  animation: orbitRotate 6s linear infinite;
}

@keyframes starPulse {
  0%,100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(12deg) scale(1.12);
  }
}

@keyframes orbitRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbitDot {
  0%,100% {
    transform: translate(0,0);
  }

  50% {
    transform: translate(-10px,14px);
  }
}

@keyframes gridSlide {
  0% {
    background-position: 0 0;
    transform: translateY(0);
  }

  100% {
    background-position: 56px 56px;
    transform: translateY(-8px);
  }
}

@keyframes paperFloat {
  0%,100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-4deg);
  }
}

@keyframes searchMove {
  0%,100% {
    transform: translateX(0) scale(1);
  }

  50% {
    transform: translateX(12px) scale(1.06);
  }
}

@keyframes penDraw {
  0%,100% {
    transform: rotate(-28deg) translateX(0);
  }

  50% {
    transform: rotate(-28deg) translateX(18px);
  }
}

@keyframes checkPop {
  0%,100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

.divider {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.stat {
  padding: 60px 20px;
  border-right: 1px solid #cccccc;
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  display: inline-block;
  font-size: 56px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.stat:hover strong {
  transform: scale(1.12) rotate(-2deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.service-card {
  background: #eeeeee;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-img {
  height: 560px;
  background-color: #c7c7c7;
  border-radius: 0;
}

.service-text {
  padding: 42px;
  min-height: 210px;
}

.service-text h3 {
  margin-bottom: 18px;
}

.service-text p {
  max-width: 100%;
}

.cta {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.team-img {
  height: 620px;
  background-color: #c7c7c7;
  margin-bottom: 40px;
  background-position: center top;
}

.team-grid p {
  max-width: 100%;
}

.team-hero-image {
  background-position: center;
}

.strength-list {
  display: grid;
  gap: 50px;
}

.strength-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.strength-dot,
.dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2f80ed;
  flex: none;
  margin-top: 8px;
}

.strength-image {
  height: 640px;
  background-position: center;
}

.news-list {
  display: grid;
  gap: 140px;
}

.news-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding-bottom: 120px;
  border-bottom: 1px solid #dddddd;
  transition: 0.35s ease;
}

.news-item .image-box {
  height: 720px;
}

.news-meta {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.read-more {
  margin-top: 30px;
  display: inline-block;
  font-weight: 700;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
}

.contact-form {
  width: 100%;
  display: grid;
  gap: 0;
}

input,
textarea,
select {
  width: 100%;
  display: block;
  padding: 22px;
  font-size: 16px;
  border: 1px solid #bbbbbb;
  background: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
}

textarea {
  height: 300px;
  resize: none;
}

.contact-form .btn {
  width: 100%;
  margin-top: 32px;
}

.info-list {
  display: grid;
  gap: 30px;
}

.info-list .image-box {
  height: 600px;
}

.contact-map-image {
  height: 620px;
  background-position: center;
}

.site-footer {
  background: #050505;
  color: white;
  padding: 80px 9% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-top p {
  color: rgba(255,255,255,0.72);
}

.footer-links,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a,
.footer-socials a {
  opacity: 0.72;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-socials a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.cursor-light {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(47,128,237,0.18), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 999;
  mix-blend-mode: screen;
}

.particle {
  position: fixed;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 998;
  opacity: 0.8;
  animation: particleFade 0.8s ease forwards;
}

@keyframes particleFade {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.8;
  }

  100% {
    transform: scale(0) translateY(-28px);
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(45px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    padding: 22px 6%;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  section {
    padding: 90px 6%;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  p {
    font-size: 15px;
  }

  .grid3,
  .split,
  .stats,
  .service-grid,
  .team-grid,
  .news-item {
    grid-template-columns: 1fr;
  }

  .img-wide {
    height: 520px;
  }

  .img-mid,
  .about-hero-image,
  .about-strength-image {
    height: 360px;
  }

  .img-small,
  .news-item .image-box,
  .info-list .image-box,
  .contact-map-image {
    height: 360px;
  }

  .service-img {
    height: 420px;
  }

  .team-img {
    height: 480px;
  }

  .strength-image {
    height: 360px;
  }

  .newsletter,
  .newsletter-form {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid #cccccc;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .image-overlay h2 {
    font-size: 42px;
  }
}

.article-hero-image {
  width: 100%;
  margin-bottom: 50px;
}

.article-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
}

.article-content h2 {
  margin-bottom: 20px;
}

.article-content p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.article-content .btn {
  margin-top: 10px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.cards-grid .card {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.cards-grid .card h3 {
  margin-bottom: 14px;
}

.cards-grid .card p {
  line-height: 1.7;
}

@media (max-width: 900px) {

  .article-hero-image img {
    height: 320px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

}