@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #6b7280;
  overflow-x: hidden;
  background: #fff;
  cursor: none;
}

/* ===== Custom Cursor ===== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #3f9dbd;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(63, 157, 189, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.cursor.hover {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  mix-blend-mode: normal;
}

.cursor-follower.hover {
  width: 50px;
  height: 50px;
  border-color: rgba(45, 212, 191, 0.4);
  background: rgba(63, 157, 189, 0.06);
}

a, button, .btn, .s-cards, .portfolio__image, .cards {
  cursor: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header.sticky {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  backdrop-filter: blur(12px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 36px;
}

.header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 40px;
}

.header__nav nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  gap: 36px;
}

.header__nav-link {
  font-weight: 500;
  color: #4b5563;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: #3f9dbd;
}

/* Dropdown */
.header__dropdown {
  position: relative;
}

.header__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.header__dropdown:hover .header__dropdown-toggle svg {
  transform: rotate(180deg);
}

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  margin-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(63, 157, 189, 0.08);
}

.header__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.header__dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-weight: 500;
  color: #6b7280;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header__dropdown-menu li a:hover {
  color: #3f9dbd;
  background: linear-gradient(135deg, rgba(63,157,189,0.06), rgba(45,212,191,0.06));
  padding-left: 28px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, #3f9dbd, #2ba8a8, #2dd4bf) !important;
  color: #fff;
  padding: 14px 32px;
  box-shadow: 0 4px 20px rgba(63, 157, 189, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(63, 157, 189, 0.45);
  transform: translateY(-2px);
}

.btn--white {
  background-color: #fff;
  color: #1e293b;
  padding: 14px 32px;
  font-weight: 600;
}

.btn--white:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: #fff;
  color: #3f9dbd;
  border-color: #fff;
}

.header-btn {
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
  padding: 160px 0 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0fdf9 0%, #e0f7fa 30%, #e8f4f8 60%, #f0f9ff 100%);
  display: flex;
  min-height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63,157,189,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,212,191,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 60px;
  z-index: 2;
}

.hero__content {
  width: 55%;
  position: relative;
  z-index: 2;
}

.hero-label {
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(63,157,189,0.12), rgba(45,212,191,0.12));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin: 0;
  line-height: 16px;
  color: #3f9dbd;
  margin-bottom: 24px;
  border: 1px solid rgba(63,157,189,0.15);
}

.label-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: 52px;
  line-height: 64px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.hero__title span {
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  margin-bottom: 40px;
  width: 85%;
  font-size: 17px;
  line-height: 28px;
  color: #64748b;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__actions .btn--primary {
  width: fit-content;
}

.hero__contact {
  display: flex;
  gap: 30px;
  margin-top: 12px;
}

.company-status {
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, #3f9dbd, #2dd4bf) 1;
  padding-left: 20px;
}

.company-status:first-child {
  border: none;
  padding-left: 0;
}

.company-status span {
  font-size: 42px;
  color: #0f172a;
  font-weight: 700;
  line-height: 1;
}

.company-status h5 {
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  margin-top: 6px;
}

.hero-main-img {
  width: 45%;
  position: relative;
  z-index: 2;
}

.hero-main-img img {
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(63,157,189,0.15));
}

/* ===== About / Why Choose Us ===== */
.about {
  padding: 100px 0;
  overflow: hidden;
  background: #fff;
}

.about .container {
  padding: 0 36px;
}

.about__wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about__images {
  display: none;
  width: 50%;
  position: relative;
  gap: 16px;
}

.about__images > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__images img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about__content {
  width: 100%;
}

.about_sub-title-background {
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(63,157,189,0.1), rgba(45,212,191,0.1));
  display: inline-block;
  padding: 8px 18px;
  margin: 0;
  line-height: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(63,157,189,0.12);
}

.about__subtitle {
  line-height: 16px;
  color: #3f9dbd;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about__title {
  font-size: 38px;
  line-height: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.about__description {
  width: 95%;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28px;
  color: #64748b;
}

.about-cards {
  display: flex;
  gap: 20px;
}

.cards {
  background: linear-gradient(135deg, #f8fdfc, #f0faf8);
  padding: 28px;
  width: 50%;
  border-radius: 16px;
  border: 1px solid rgba(63,157,189,0.1);
  transition: all 0.3s ease;
}

.cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(63, 157, 189, 0.12);
  border-color: rgba(63,157,189,0.2);
}

.about-icon-bg {
  background: linear-gradient(135deg, rgba(63,157,189,0.15), rgba(45,212,191,0.15));
  height: 56px;
  width: 56px;
  border-radius: 14px;
  line-height: 56px;
  text-align: center;
  display: block;
  transition: 0.4s;
}

.about-icon-bg img {
  vertical-align: middle;
  display: inline;
}

.about-card-content h3 {
  font-size: 20px;
  color: #0f172a;
  padding-bottom: 12px;
  padding-top: 20px;
}

.about-card-content p {
  font-size: 15px;
  line-height: 24px;
  color: #64748b;
}

.cards:hover .about-icon-bg {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title__heading {
  font-size: 38px;
  line-height: 48px;
  font-weight: 700;
  color: #0f172a;
  max-width: 55%;
  margin: 0 auto 18px;
}

.section-title__text {
  max-width: 55%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 28px;
  color: #64748b;
}

/* ===== Services ===== */
.services {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fffe 0%, #fff 100%);
}

.services .container {
  padding: 0 36px;
}

.services-cards {
  display: flex;
  gap: 24px;
}

.s-cards {
  background: #fff;
  padding: 36px;
  width: 33.333%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(63,157,189,0.1);
  transition: all 0.4s ease;
}

.s-cards::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d8ca8, #3f9dbd, #2bb8a8, #2dd4bf);
  transform: translateX(-100%);
  transition: 0.4s ease;
  z-index: 1;
}

.services-icon {
  position: relative;
  z-index: 2;
}

.services-icon-bg {
  background: linear-gradient(135deg, rgba(63,157,189,0.12), rgba(45,212,191,0.12));
  height: 56px;
  width: 56px;
  border-radius: 14px;
  line-height: 56px;
  text-align: center;
  display: block;
  transition: 0.4s;
}

.services-icon-bg img {
  vertical-align: middle;
  display: inline;
}

.services-card-content {
  position: relative;
  z-index: 2;
}

.services-card-title {
  color: #0f172a;
  font-size: 20px;
  transition: color 0.3s;
}

.services-card-content h3 {
  padding-bottom: 14px;
  padding-top: 22px;
}

.services-card-des {
  color: #64748b;
  font-size: 15px;
  line-height: 26px;
  transition: color 0.3s;
}

.servies-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  color: #3f9dbd;
  transition: all 0.3s;
}

.s-cards:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(63, 157, 189, 0.2);
}

.s-cards:hover::before {
  transform: translateX(0);
}

.s-cards:hover .services-card-title {
  color: #fff;
}

.s-cards:hover .services-card-des {
  color: rgba(255, 255, 255, 0.85);
}

.s-cards:hover .servies-card-btn {
  color: #fff;
}

.s-cards:hover .services-icon-bg {
  background: rgba(255, 255, 255, 0.2);
  transform: rotateY(180deg);
}

/* ===== Brands Marquee ===== */
.brands {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.brands__label {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.brands__marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands__track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.brands__track img {
  height: 32px;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(40%) sepia(10%) saturate(500%) hue-rotate(160deg);
}

.brands__track img:hover {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(55%) sepia(50%) saturate(500%) hue-rotate(155deg) brightness(95%);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fffe 0%, #fff 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.testimonial__card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(63,157,189,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial__card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  background: linear-gradient(135deg, rgba(63,157,189,0.1), rgba(45,212,191,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(63,157,189,0.12);
  border-color: rgba(63,157,189,0.2);
}

.testimonial__card--featured {
  background: linear-gradient(135deg, #2d8ca8, #3f9dbd, #2dd4bf);
  border: none;
}

.testimonial__card--featured::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial__card--featured .testimonial__text {
  color: rgba(255,255,255,0.9);
}

.testimonial__card--featured .testimonial__author h4 {
  color: #fff;
}

.testimonial__card--featured .testimonial__author span {
  color: rgba(255,255,255,0.7);
}

.testimonial__card--featured:hover {
  box-shadow: 0 20px 50px rgba(63,157,189,0.3);
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial__text {
  font-size: 16px;
  line-height: 28px;
  color: #475569;
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(63,157,189,0.1);
}

.testimonial__card--featured .testimonial__author {
  border-top-color: rgba(255,255,255,0.2);
}

.testimonial__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__author h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
}

.testimonial__author span {
  font-size: 13px;
  color: #94a3b8;
}

/* ===== Stats Counter ===== */
.stats {
  padding: 0 0 80px;
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats__card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(63, 157, 189, 0.08);
  transition: all 0.4s ease;
}

.stats__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(63, 157, 189, 0.15);
  border-color: rgba(63, 157, 189, 0.2);
}

.stats__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(63,157,189,0.12), rgba(45,212,191,0.12));
  color: #3f9dbd;
}

.stats__icon--blue {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(99,102,241,0.12));
  color: #3b82f6;
}

.stats__icon--green {
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(52,211,153,0.12));
  color: #10b981;
}

.stats__icon--orange {
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(251,146,60,0.12));
  color: #f97316;
}

.stats__info {
  flex: 1;
}

.stats__value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stats__number {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  line-height: 1;
}

.stats__suffix {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats__label {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 6px;
}

/* Stagger */
.stats__card.animate.show:nth-child(1) { transition-delay: 0s; }
.stats__card.animate.show:nth-child(2) { transition-delay: 0.1s; }
.stats__card.animate.show:nth-child(3) { transition-delay: 0.2s; }
.stats__card.animate.show:nth-child(4) { transition-delay: 0.3s; }

/* ===== Small Features ===== */
.small-features {
  padding: 60px 0;
  background: #fff;
}

.small-features .container {
  padding: 0 50px;
}

.small-features__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.small-features__item {
  display: flex;
  gap: 20px;
  width: 45%;
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.small-features__item:hover {
  background: linear-gradient(135deg, rgba(63,157,189,0.04), rgba(45,212,191,0.04));
}

.small-features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 18px;
}

.small-features__icon--pink {
  background: linear-gradient(135deg, #f472b6, #ec4899);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25);
}

.small-features__icon--green {
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.small-features__icon--orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.small-features__icon img {
  width: 36px;
  height: 36px;
}

.small-features__title {
  font-weight: 600;
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 8px;
}

/* ===== Portfolio ===== */
.portfolio {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0fdf9 0%, #fff 40%, #f8fffe 100%);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(63,157,189,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.gradient-text {
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Filter Tabs */
.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.portfolio__filter {
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  border: 1px solid rgba(63,157,189,0.15);
  transition: all 0.3s ease;
  cursor: none;
  font-family: 'Inter', sans-serif;
}

.portfolio__filter:hover {
  color: #3f9dbd;
  border-color: rgba(63,157,189,0.4);
  box-shadow: 0 4px 15px rgba(63,157,189,0.1);
}

.portfolio__filter.active {
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(63,157,189,0.3);
}

/* Grid */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}

.portfolio__item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio__item--wide {
  grid-column: span 2;
}

.portfolio__item:hover {
  box-shadow: 0 20px 50px rgba(63, 157, 189, 0.18);
  transform: translateY(-8px);
}

.portfolio__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  cursor: none;
}

.portfolio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  display: block;
}

.portfolio__item:hover .portfolio__image img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* Overlay */
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 30%,
    rgba(13, 42, 56, 0.92) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 36px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__overlay-content {
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.portfolio__item:hover .portfolio__overlay-content {
  transform: translateY(0);
}

.portfolio__tag {
  display: inline-block;
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.portfolio__desc {
  font-size: 14px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  max-width: 90%;
}

.portfolio__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #2dd4bf;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.portfolio__link svg {
  transition: transform 0.3s ease;
}

.portfolio__link:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.3);
}

.portfolio__link:hover svg {
  transform: translateX(4px);
}

/* CTA */
.portfolio__cta {
  text-align: center;
  margin-top: 60px;
}

/* Stagger animation */
.portfolio__item.animate.show:nth-child(1) { transition-delay: 0s; }
.portfolio__item.animate.show:nth-child(2) { transition-delay: 0.1s; }
.portfolio__item.animate.show:nth-child(3) { transition-delay: 0.15s; }
.portfolio__item.animate.show:nth-child(4) { transition-delay: 0.2s; }
.portfolio__item.animate.show:nth-child(5) { transition-delay: 0.25s; }

/* Filter animation */
.portfolio__item.portfolio-hide {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  pointer-events: none;
}

.portfolio__item.portfolio-show {
  opacity: 1;
  transform: scale(1);
  position: relative;
  pointer-events: auto;
}

/* ===== CTA Section ===== */
.cta {
  background: linear-gradient(135deg, #2d8ca8, #3f9dbd, #2bb8a8, #2dd4bf);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  border-radius: 50%;
}

.cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 10;
}

.cta__content {
  width: 100%;
}

.cta__title {
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 28px;
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 40px;
  background: #f8fffe;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(63,157,189,0.12);
}

.footer__brand {
  width: 30%;
  flex-shrink: 0;
}

.footer__brand-logo {
  height: 36px;
  margin-bottom: 20px;
}

.footer__brand-text {
  margin-bottom: 24px;
  color: #64748b;
  font-size: 15px;
  line-height: 26px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(63,157,189,0.15);
  transition: all 0.3s ease;
  background: #fff;
}

.footer__social a:hover {
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(63,157,189,0.25);
}

.footer__social a:hover svg {
  fill: #fff;
}

.footer__social svg {
  fill: #64748b;
  width: 16px;
  height: 16px;
  transition: all 0.2s ease;
}

.footer__columns {
  display: flex;
  gap: 80px;
  flex: 1;
  justify-content: flex-start;
  padding-left: 40px;
}

.footer__links {
  width: auto;
}

.footer__links-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.footer__links-list a {
  color: #64748b;
  transition: all 0.2s;
}

.footer__links-list a:hover {
  color: #3f9dbd;
  padding-left: 4px;
}

/* Footer Dropdown */
.footer__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer__dropdown-toggle:hover {
  color: #3f9dbd;
}

.footer__dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.footer__dropdown.open .footer__dropdown-toggle svg {
  transform: rotate(180deg);
}

.footer__dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 14px;
}

.footer__dropdown.open .footer__dropdown-menu {
  max-height: 200px;
}

.footer__dropdown-menu li {
  margin-top: 10px;
}

.footer__dropdown-menu li a {
  font-size: 14px;
  color: #64748b;
  transition: color 0.2s;
}

.footer__dropdown-menu li a:hover {
  color: #3f9dbd;
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  font-size: 15px;
  justify-content: space-between;
  color: #94a3b8;
}

.footer-bottom-right {
  display: flex;
  gap: 10px;
}

.footer-bottom-right .right-border {
  border-right: 2px solid #3f9dbd;
}

.footer-bottom-right a:hover {
  color: #3f9dbd;
}

.footer__bottom a {
  color: #94a3b8;
  padding-right: 10px;
}

/* ===== Features Page Hero ===== */
.features-hero {
  padding: 180px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #f0fdf9 0%, #e0f7fa 50%, #f0f9ff 100%);
}

.features-hero__title {
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.features-hero__text {
  max-width: 600px;
  margin: 0 auto;
  color: #64748b;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #f0fdf9 0%, #e0f7fa 40%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(63,157,189,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #94a3b8;
}

.page-hero__breadcrumb a {
  color: #3f9dbd;
  font-weight: 500;
}

.page-hero__breadcrumb span {
  color: #cbd5e1;
}

.page-hero__title {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.page-hero__text {
  max-width: 600px;
  margin: 0 auto;
  color: #64748b;
  font-size: 17px;
  line-height: 28px;
}

/* ===== About Page ===== */
.about-mission {
  padding: 100px 0;
}

.about-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-mission__card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(63,157,189,0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.about-mission__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(63,157,189,0.1);
  border-color: rgba(63,157,189,0.2);
}

.about-mission__icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(63,157,189,0.12), rgba(45,212,191,0.12));
  color: #3f9dbd;
}

.about-mission__card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.about-mission__card p {
  font-size: 15px;
  line-height: 26px;
  color: #64748b;
}

/* Team */
.team {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fffe 0%, #fff 100%);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(63,157,189,0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.team__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(63,157,189,0.12);
}

.team__card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team__info {
  padding: 24px 20px;
}

.team__info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.team__info span {
  font-size: 14px;
  color: #3f9dbd;
  font-weight: 500;
}

.team__social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.team__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(63,157,189,0.08), rgba(45,212,191,0.08));
  transition: all 0.3s;
}

.team__social a:hover {
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
}

.team__social svg {
  width: 14px;
  height: 14px;
  fill: #3f9dbd;
  transition: fill 0.3s;
}

.team__social a:hover svg {
  fill: #fff;
}

/* ===== Contact Page ===== */
.contact {
  padding: 100px 0;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact__info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(63,157,189,0.08);
  transition: all 0.3s;
}

.contact__info-card:hover {
  box-shadow: 0 10px 30px rgba(63,157,189,0.08);
  border-color: rgba(63,157,189,0.2);
}

.contact__info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(63,157,189,0.12), rgba(45,212,191,0.12));
  color: #3f9dbd;
}

.contact__info-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.contact__info-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 24px;
}

.contact__form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(63,157,189,0.08);
}

.contact__form h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 28px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact__input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(63,157,189,0.15);
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #f8fffe;
  transition: all 0.3s;
  outline: none;
}

.contact__input:focus {
  border-color: #3f9dbd;
  box-shadow: 0 0 0 4px rgba(63,157,189,0.1);
}

.contact__input::placeholder {
  color: #94a3b8;
}

textarea.contact__input {
  resize: vertical;
  min-height: 140px;
  margin-bottom: 16px;
}

.contact__form .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* ===== Service Detail Page ===== */
.service-detail {
  padding: 100px 0;
}

.service-detail__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail__content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.service-detail__content p {
  font-size: 16px;
  line-height: 28px;
  color: #64748b;
  margin-bottom: 30px;
}

.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #334155;
  font-weight: 500;
}

.service-detail__list li svg {
  flex-shrink: 0;
  color: #2dd4bf;
}

.service-detail__image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(63,157,189,0.1);
}

/* Process section */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fffe 0%, #fff 100%);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: process;
}

.process__card {
  text-align: center;
  padding: 36px 24px;
  position: relative;
  counter-increment: process;
}

.process__card::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  font-size: 48px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, rgba(63,157,189,0.15), rgba(45,212,191,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.process__card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.process__card p {
  font-size: 15px;
  line-height: 26px;
  color: #64748b;
}

/* ===== Inner Page Responsive ===== */
@media (max-width: 767px) {
  .page-hero {
    padding: 140px 0 50px;
  }

  .page-hero__title {
    font-size: 32px;
    line-height: 42px;
  }

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

  .team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .team__card img {
    height: 200px;
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 28px;
  }

  .service-detail__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail__content h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .process__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3f9dbd, #2dd4bf);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(63, 157, 189, 0.3);
  transition: all 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(63, 157, 189, 0.4);
}

.scroll-top.visible {
  display: flex;
}

.scroll-top svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */

/* Tablet */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .hero {
    padding: 160px 0 80px;
    min-height: auto;
  }

  .hero__title {
    font-size: 38px;
    line-height: 48px;
  }

  .small-features__item {
    width: 45%;
  }

  .about__images {
    display: flex;
  }

  .about__content {
    width: 50%;
  }

  .about__title {
    font-size: 30px;
    line-height: 40px;
  }

  .section-title__heading {
    font-size: 30px;
    line-height: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    flex-wrap: nowrap;
  }

  .footer__brand {
    width: 25%;
  }

  .footer__columns {
    gap: 50px;
    padding-left: 20px;
  }

  .cta__content {
    width: 55%;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .header__nav {
    display: flex;
  }

  .hero {
    padding: 200px 0 100px;
  }

  .small-features__item {
    width: 33.333%;
  }

  .small-features__grid {
    flex-wrap: nowrap;
    gap: 40px;
  }

  .about {
    padding: 100px 0;
  }

  .about__title {
    font-size: 36px;
    line-height: 46px;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title__heading {
    font-size: 36px;
    line-height: 46px;
  }

  .footer__columns {
    gap: 70px;
    padding-left: 30px;
  }

  .footer__brand {
    width: 28%;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero {
    padding: 200px 0 0px;
  }

  .hero__title {
    font-size: 52px;
    line-height: 64px;
  }

  .about {
    padding: 120px 0;
  }

  .about__title {
    font-size: 42px;
    line-height: 52px;
  }

  .section-title__heading {
    font-size: 42px;
    line-height: 52px;
  }

  .cta__title {
    font-size: 42px;
    line-height: 52px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .header__dropdown:hover .header__dropdown-toggle svg {
    transform: none;
  }

  .header__dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 0;
  }

  .header__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    min-width: auto;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    border: none;
  }

  .header__dropdown.open .header__dropdown-menu {
    max-height: 200px;
    margin-top: 8px;
  }

  .header__dropdown.open .header__dropdown-toggle svg {
    transform: rotate(180deg);
  }

  .header__dropdown-menu li a {
    padding: 6px 0;
    text-align: center;
    font-size: 14px;
  }

  .header__actions {
    flex-direction: column;
  }

  .hamburger {
    display: flex;
    z-index: 99999;
  }

  .hero {
    padding: 140px 0 0px;
    min-height: auto;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero__content {
    width: 100%;
    text-align: center;
  }

  .hero__title {
    font-size: 32px;
    line-height: 42px;
  }

  .hero__description {
    width: 100%;
  }

  .hero__actions {
    align-items: center;
  }

  .hero__contact {
    justify-content: center;
  }

  .hero-main-img {
    width: 100%;
  }

  .hero__image,
  .hero__shapes {
    display: none;
  }

  .small-features__grid {
    flex-direction: column;
  }

  .small-features__item {
    width: 100%;
    padding: 16px;
  }

  .small-features .container {
    padding: 0 16px;
  }

  .about .container {
    padding: 0 16px;
  }

  .about__wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about__content {
    width: 100%;
  }

  .about__title {
    font-size: 28px;
    line-height: 38px;
  }

  .section-title__heading {
    max-width: 90%;
    font-size: 28px;
    line-height: 38px;
  }

  .section-title__text {
    max-width: 100%;
  }

  .services .container {
    padding: 0 16px;
  }

  .services-cards {
    flex-direction: column;
  }

  .s-cards {
    width: 100%;
  }

  .footer {
    padding: 50px 0 30px;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    width: 100%;
  }

  .footer__columns {
    flex-direction: column;
    gap: 32px;
    margin-left: 0;
    padding-left: 0;
  }

  .cta .container {
    flex-direction: column;
    text-align: center;
  }

  .cta__content {
    width: 100%;
  }

  .cta__title {
    font-size: 28px;
    line-height: 38px;
  }

  .footer-bottom-right {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .about-cards {
    flex-direction: column;
  }

  .cards {
    width: 100%;
  }

  .company-status span {
    font-size: 30px;
  }

  .company-status h5 {
    font-size: 13px;
  }

  .portfolio {
    padding: 60px 0;
  }

  .portfolio__filters {
    gap: 8px;
    margin-bottom: 30px;
  }

  .portfolio__filter {
    padding: 8px 18px;
    font-size: 13px;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 16px;
  }

  .portfolio__item--wide {
    grid-column: span 1;
  }

  .portfolio__overlay {
    opacity: 1;
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 20%,
      rgba(13, 42, 56, 0.85) 100%
    );
  }

  .portfolio__overlay-content {
    transform: translateY(0);
  }

  .portfolio__title {
    font-size: 18px;
  }

  .portfolio__desc {
    display: none;
  }

  .portfolio__cta {
    margin-top: 40px;
  }

  .brands__track {
    gap: 50px;
  }

  .brands__track img {
    height: 24px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial__card {
    padding: 28px;
  }

  .stats {
    margin-top: -30px;
    padding-bottom: 40px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .stats__card {
    padding: 20px 16px;
    gap: 14px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .stats__value {
    justify-content: center;
  }

  .stats__icon {
    width: 50px;
    height: 50px;
  }

  .stats__icon svg {
    width: 22px;
    height: 22px;
  }

  .stats__number {
    font-size: 28px;
  }

  .stats__suffix {
    font-size: 18px;
  }

  .stats__label {
    font-size: 12px;
  }
}
