*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;

}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #0F2D52;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;

}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; color: #0C1B33; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 500; }
p  { color: #475569; line-height: 1.75; }

.section-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #38BDF8;
  margin-bottom: 10px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 40px;
}

.section {
  padding-block: 120px;
  background: #fff;

  overflow-x: clip;
  overflow-y: visible;
}

.section-header { margin-bottom: 48px; text-align: center; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin-inline: auto; }
.section-sub { max-width: 560px; font-size: 1.05rem; color: #475569; margin-top: 12px; margin-inline: auto; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: linear-gradient(135deg,#0EA5E9,#06B6D4); color: #fff; border: none; }
.btn-primary:hover { background: linear-gradient(135deg,#0284C7,#0EA5E9); box-shadow: 0 4px 20px rgba(14,165,233,0.4); }

.btn-outline { background: transparent; color: #0369A1; border: 1.5px solid #0EA5E9; }
.btn-outline:hover { background: #0EA5E9; color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.img-placeholder {
  background: #BAE6FD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F2D52;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  text-align: center;
  padding: 16px;
  min-height: 200px;
}
.img-placeholder span { opacity: 0.6; }

.card {
  background: #fff;
  border: 1px solid #E0F2FE;
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(12,27,51,0.1); transform: translateY(-3px); }

.tag { display: inline-block; padding: 4px 12px; font-size: 12px; font-weight: 500; background: #fff; border: 1.5px solid #0EA5E9; border-radius: 20px; color: #0369A1; }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav {
  position: relative;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid #E0F2FE;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 72px;
}
.nav.scrolled { border-bottom-color: #BAE6FD; box-shadow: 0 2px 16px rgba(12,27,51,0.1); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #0F2D52;
  min-width: 0;
  flex-shrink: 1;
}

.nav-logo img { max-height: 55px; max-width: 160px; width: auto; height: auto; object-fit: contain; display: block; }
.nav-logo-placeholder {
  width: 36px; height: 36px;
  background: #0EA5E9;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700;
}
.nav-logo span { color: #0EA5E9; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: #475569;
  transition: color 0.2s, font-size 0.2s; position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: #0EA5E9;
  border-radius: 2px; transition: width 0.2s;
}
.nav-link:hover, .nav-link.active { color: #0369A1; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta { display: inline-flex; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; padding: 8px; border-radius: 8px; justify-content: center; transition: background 0.2s; }
.hamburger:hover { background: #fff; }
.hamburger span { display: block; height: 2px; background: #0F2D52; border-radius: 2px; transition: transform 0.2s, opacity 0.2s, width 0.2s; }
.hamburger span:last-child { width: 60%; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: 80px;
  background: #fff; z-index: 999;
  padding: 24px 20px;
  flex-direction: column; gap: 4px;
  transform: translateX(100%);

  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s ease;
}
.mobile-menu-link {
  display: block; padding: 14px 8px;
  font-size: 17px; font-weight: 500; color: #0F2D52;
  border-bottom: 1px solid #E0F2FE;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-link:hover { color: #0EA5E9; padding-left: 16px; }
.mobile-menu-cta { margin-top: 20px; width: 100%; text-align: center; justify-content: center; }

.nav-offset { padding-top: 72px; }

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #E0F2FE 20%, #E0F2FE 80%, transparent);
  margin: 0;
}

.footer { background: #fff; border-top: 1px solid #BFDBFE; overflow-x: clip; }
.footer-body { padding: 48px 0 40px; }
.footer-grid { display: grid; gap: 48px 40px; grid-template-columns: 2fr 1fr 1fr 1.4fr; margin-bottom: 48px; align-items: start; }
.footer-grid > * { align-self: start; }
.footer-brand { display: flex; flex-direction: column; }
.footer-tagline-text { font-size: 13px; font-weight: 600; color: #0F2D52; margin-top: 14px; letter-spacing: 0.04em; }
.footer-brand-desc { font-size: 13.5px; color: #64748B; margin-top: 6px; max-width: 260px; line-height: 1.75; }
.footer-logo { display: flex; align-items: center; }
.footer-brand-name { font-size: 22px; font-weight: 700; color: #0F2D52; letter-spacing: -0.02em; text-decoration: none; }
.footer-brand-name span { color: #0EA5E9; }

.footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #0F2D52; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #0EA5E9; display: inline-block; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 14px; color: #475569; transition: color 0.2s; }
.footer-link:hover { color: #0EA5E9; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #475569; margin-bottom: 14px; }
.footer-contact-item i { margin-top: 2px; flex-shrink: 0; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social { width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid #E0F2FE; display: flex; align-items: center; justify-content: center; color: #475569; font-size: 16px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-social:hover { background: #0EA5E9; border-color: #0EA5E9; color: #fff; }
.footer-bottom { border-top: 1px solid #BFDBFE; padding-top: 24px; display: flex; flex-direction: row; justify-content: space-between; align-items: center; text-align: left; gap: 10px; }
.footer-copy { font-size: 12px; color: #64748B; }
.footer-tech { font-size: 12px; color: #64748B; }
.footer-tech a { color: #0369A1; font-weight: 500; }

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: #0F2D52;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-block: 100px 80px;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; gap: 48px; grid-template-columns: 1fr 1fr; align-items: center; position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; margin-bottom: 20px;
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #7FC4FF;
}
.hero-dot { width: 6px; height: 6px; background: #0EA5E9; border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: #0EA5E9; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-img { display: block; }
.hero-img-box {
  width: 100%; aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 500;
  text-align: center; padding: 24px;
}

.stats { background: #0275B0; padding-block: 48px; border-top: 3px solid rgba(255,255,255,0.15); overflow-x: clip; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-number { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: #fff; line-height: 1; }
.stat-label { font-size: 13px; color: #ffffff; margin-top: 6px; }

.services { background: #fff; border-top: 1px solid #E0F2FE; }

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  border: 1.5px solid #E0F2FE;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,127,236,0.06) 0%, rgba(29,81,129,0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(11,127,236,0.14); border-color: #0EA5E9; }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-icon {
  background: #E0F2FE;
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14,165,233,0.2);
}
.service-icon i { font-size: 22px; color: #1a1a1a; transition: color 0.3s; }
.service-card:hover .service-icon i { color: #0EA5E9; }

.service-title { font-size: 17px; font-weight: 700; color: #0F2D52; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: #64748B; line-height: 1.75; margin-bottom: 20px; }

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags .tag { display: inline-block; padding: 4px 12px; font-size: 12px; font-weight: 500; background: #fff; border: 1.5px solid #0EA5E9; border-radius: 20px; color: #0369A1; }
.services-more { text-align: center; margin-top: 48px; }

.projects { background: #fff; border-top: 1px solid #E0F2FE; }
.project-card {
  background: #fff; border: 1px solid #E0F2FE; border-radius: 16px;
  overflow: hidden; transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.project-card:hover { box-shadow: 0 16px 48px rgba(11,127,236,0.13); transform: translateY(-5px); border-color: #0EA5E9; }
.project-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg,#0C1B33,#0284C7);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-thumb-placeholder {
  font-size: 36px; font-weight: 700; color: rgba(255,255,255,0.15); letter-spacing: -1px;
}
.project-body { padding: 22px 24px 26px; }
.project-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #0369A1; margin-bottom: 8px; }
.project-title { font-size: 17px; font-weight: 600; color: #0F2D52; margin-bottom: 10px; line-height: 1.4; }
.project-desc { font-size: 14px; color: #475569; line-height: 1.65; margin-bottom: 18px; }
.project-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.process { background: #fff; border-top: 1px solid #E0F2FE; }
.process-grid { display: grid; gap: 32px; grid-template-columns: repeat(4,1fr); }
.process-step { text-align: center; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(14,165,233,0.08); border: 2px solid rgba(14,165,233,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 600; color: #0EA5E9;
  margin: 0 auto 18px; transition: background 0.2s, border-color 0.2s;
}
.process-step:hover .process-num { background: #0EA5E9; border-color: #0EA5E9; color: #fff; }
.process-step h3 { font-size: 16px; font-weight: 600; color: #0F2D52; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: #475569; line-height: 1.65; }

.testimonials { background: #fff; border-top: 1px solid #E0F2FE; }
.testi-slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px; }
.testi-slider::-webkit-scrollbar { display: none; }
.testi-slide { scroll-snap-align: start; flex: 0 0 calc(33.333% - 16px); min-width: 0; }
.testi-card { background: #fff; border: 1px solid #E0F2FE; border-radius: 14px; padding: 28px; height: 100%; }
.testi-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: #475569; line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(11,127,236,0.12); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: #0EA5E9; flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testi-name { font-size: 14px; font-weight: 600; color: #0F2D52; }
.testi-company { font-size: 12px; color: #64748B; }

.cta-banner {

  background:
    linear-gradient(rgba(15,45,82,0.78), rgba(12,27,51,0.88)),
    #0F2D52;
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(11,127,236,0.25) 0%, transparent 70%); pointer-events: none; }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.faq { background: #fff; border-top: 1px solid #E0F2FE; overflow-x: clip; }
.faq-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: #0EA5E9; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 18px;
}
.faq-list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #fff;
  border: 1px solid #E0F2FE;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(12,27,51,0.05);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.faq-item.open { box-shadow: 0 8px 28px rgba(11,127,236,0.12); border-color: #BAE6FD; }

@media (hover: hover) {
  .faq-item:hover { border-color: #BAE6FD; box-shadow: 0 10px 30px rgba(11,127,236,0.14); transform: translateY(-2px); }
  .faq-item:hover .faq-q-text { color: #0EA5E9; }
  .faq-item:hover .faq-chevron { transform: translateY(2px); color: #0284C7; }
  .faq-item.open:hover .faq-chevron { transform: rotate(180deg) translateY(-2px); }
  .faq-q:hover { background: rgba(14,165,233,0.04); }
}
.faq-q {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  background: none; border: none;
  position: relative;
  transition: background 0.2s ease;
}
.faq-q::before {
  content: '';
  position: absolute; left: 0; top: 18px; bottom: 18px;
  width: 4px; border-radius: 0 4px 4px 0;
  background: #0EA5E9;
}
.faq-q-text {
  flex: 1;
  font-size: 16px; font-weight: 600; line-height: 1.4;
  color: #0F2D52;
  transition: color 0.2s;
  padding-left: 8px;
}
.faq-item.open .faq-q-text { color: #0EA5E9; }
.faq-chevron {
  flex-shrink: 0;
  color: #0EA5E9; font-size: 20px;
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 24px 22px 32px;
  font-size: 14.5px; line-height: 1.75; color: #475569;
}

.about-hero { background: linear-gradient(135deg, #0C1B33 0%, #0F2D52 60%, #0C3A6B 100%); padding-block: 48px 70px; }
.about-hero h1 { color: #fff; margin-bottom: 16px; text-align: center; }
.about-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; text-align: center; margin-inline: auto; }
.about-story { background: #fff; border-top: 1px solid #E0F2FE; }
.about-story-inner { display: grid; gap: 48px; grid-template-columns: 1fr 1fr; align-items: center; }
.about-story-img { width: 100%; aspect-ratio: 4/3; }
.about-values { background: #fff; border-top: 1px solid #E0F2FE; }
.value-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #E0F2FE; text-align: center; }
.value-icon { width: 44px; height: 44px; background: rgba(14,165,233,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; margin-inline: auto; }
.about-team { background: #fff; border-top: 1px solid #E0F2FE; }
.team-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid #E0F2FE; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.team-card:hover { box-shadow: 0 8px 32px rgba(12,27,51,0.1); transform: translateY(-3px); }
.team-photo { width: 100%; aspect-ratio: 1; background: #BAE6FD; display: flex; align-items: center; justify-content: center; color: #0F2D52; font-size: 13px; font-weight: 500; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 20px; }
.team-name { font-size: 16px; font-weight: 600; color: #0F2D52; margin-bottom: 4px; }
.team-role { font-size: 13px; color: #475569; margin-bottom: 12px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 32px; height: 32px; background: rgba(14,165,233,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #0EA5E9; font-size: 14px; transition: background 0.2s, color 0.2s; }
.team-social a:hover { background: #0EA5E9; color: #fff; }

.services-hero { background: linear-gradient(135deg, #0C1B33 0%, #0F2D52 60%, #0C3A6B 100%); padding-block: 48px 70px; }
.services-hero h1 { color: #fff; margin-bottom: 16px; text-align: center; }
.services-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; text-align: center; margin-inline: auto; }
.services-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn { padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 500; border: 1.5px solid #BAE6FD; color: #475569; background: #fff; cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.filter-btn.active, .filter-btn:hover { border-color: #0EA5E9; color: #0369A1; background: rgba(11,127,236,0.06); }
.tech-logos { background: #fff; }
.tech-logos-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.tech-logo-item { width: 80px; height: 60px; background: #fff; border: 1px solid #E0F2FE; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #475569; text-align: center; padding: 8px; }
.tech-logo-item img { max-width: 48px; max-height: 36px; object-fit: contain; }

.projects-hero { background: linear-gradient(135deg, #0C1B33 0%, #0F2D52 60%, #0C3A6B 100%); padding-block: 48px 70px; }
.projects-hero h1 { color: #fff; margin-bottom: 16px; text-align: center; }
.projects-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; text-align: center; margin-inline: auto; }

.blog-hero { background: linear-gradient(135deg, #0C1B33 0%, #0F2D52 60%, #0C3A6B 100%); padding-block: 48px 70px; }
.blog-hero h1 { color: #fff; margin-bottom: 16px; text-align: center; }
.blog-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; text-align: center; margin-inline: auto; }
.blog-card { background: #fff; border: 1px solid #E0F2FE; border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(12,27,51,0.1); transform: translateY(-3px); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; background: #BAE6FD; display: flex; align-items: center; justify-content: center; color: #0F2D52; font-size: 13px; font-weight: 500; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 22px 24px 26px; }
.blog-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #0EA5E9; margin-bottom: 8px; }
.blog-title { font-size: 17px; font-weight: 600; color: #0F2D52; margin-bottom: 10px; line-height: 1.3; }
.blog-excerpt { font-size: 14px; color: #475569; line-height: 1.65; margin-bottom: 18px; }
.blog-meta { font-size: 12px; color: #64748B; display: flex; gap: 16px; }

.contact-hero { background: linear-gradient(135deg, #0C1B33 0%, #0F2D52 60%, #0C3A6B 100%); padding-block: 48px 70px; }
.contact-hero h1 { color: #fff; margin-bottom: 16px; text-align: center; }
.contact-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; text-align: center; margin-inline: auto; }
.contact-grid { display: grid; gap: 40px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
.contact-form-card { background: #fff; border: 1px solid #E0F2FE; border-radius: 16px; padding: 36px; max-width: 100%; min-width: 0; }
.contact-info-card { background: #fff; border: 1px solid #E0F2FE; border-radius: 16px; padding: 36px; max-width: 100%; min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; min-width: 0; }
.form-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #475569; }
.form-input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 11px 14px; border: 1.5px solid #BAE6FD;
  border-radius: 8px; font-size: 14px; color: #0F2D52;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: #0EA5E9; box-shadow: 0 0 0 3px rgba(14,165,233,0.1); outline: none; }
.form-input::placeholder { color: #94A3B8; }
textarea.form-input { resize: vertical; min-height: 120px; line-height: 1.6; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238599AA' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-success { display: none; background: #E6F7F1; border: 1px solid rgba(15,110,86,0.2); border-radius: 8px; padding: 14px; font-size: 14px; color: #0F6E56; text-align: center; margin-top: 16px; }
.form-success.show { display: block; }
.form-error-msg { display: none; background: #FEE8E8; border: 1px solid rgba(163,45,45,0.2); border-radius: 8px; padding: 14px; font-size: 14px; color: #A32D2D; text-align: center; margin-top: 16px; }
.form-error-msg.show { display: block; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-icon { width: 40px; height: 40px; background: rgba(14,165,233,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #0EA5E9; font-size: 18px; flex-shrink: 0; }
.contact-info-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #64748B; margin-bottom: 4px; }
.contact-info-value { font-size: 14px; color: #0F2D52; font-weight: 500; }

.page-404 { min-height: 100vh; min-height: 100dvh; background: #0F2D52; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.page-404 h1 { font-size: clamp(5rem, 15vw, 10rem); color: rgba(255,255,255,0.15); font-weight: 700; line-height: 1; margin-bottom: 0; letter-spacing: -0.04em; }
.page-404 h2 { font-size: 1.8rem; color: #fff; margin-bottom: 14px; }
.page-404 p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-left, .reveal-right, .reveal-up { opacity: 1; transform: none; transition: none; } }

.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-6  { margin-bottom: 24px; }
.hidden { display: none !important; }

.footer-logo img {
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav-logo-placeholder:has(+ img),
#logo-placeholder:empty {
  display: none;
}

.team-member {
  position: relative;
  text-align: center;
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #BAE6FD;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.team-member:hover .team-photo img {
  filter: grayscale(0%);
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.team-member:hover .team-photo-placeholder {
  filter: grayscale(0%);
}
.team-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0F2D52;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
}

.team-socials {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.team-member:hover .team-socials {
  opacity: 1;
  transform: translateX(0);
}
.team-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F2D52;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.team-social-btn:hover {
  background: #0EA5E9;
  color: #fff;
}

.team-info {
  margin-top: 16px;
  padding: 0;
  text-align: center;
}
.team-name {
  font-size: 16px;
  font-weight: 600;
  color: #0D1B3E;
  margin-bottom: 5px;
}
.team-role {
  font-size: 14px;
  font-weight: 700;
  color: #0D1B3E;
}

#logo-placeholder,
#footer-logo-placeholder {
  display:block;
  width:0 !important;
  height:0 !important;
  overflow:hidden;
  font-size:0 !important;
  line-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  border:none !important;
  background:none !important;
  color:transparent !important;
}

.pre-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: #EFF6FF; border-bottom: 1px solid #BFDBFE; height: 36px; display: flex; align-items: center; }
.pre-header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.pre-header-left { display: flex; align-items: center; gap: 24px; }
.pre-header-link { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: #1E40AF; transition: color 0.2s; text-decoration: none; cursor: pointer; letter-spacing: 0.01em; }
.pre-header-link:hover { color: #0EA5E9; }
.pre-header-link i { font-size: 13px; color: #0EA5E9; }
.pre-header-right { display: flex; align-items: center; gap: 12px; }
.pre-header-tag { font-size: 11px; font-weight: 600; color: #64748B; letter-spacing: 0.1em; text-transform: uppercase; }

.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }
.breadcrumb a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { font-size: 13px; color: rgba(255,255,255,0.35); }
.breadcrumb-current { font-size: 13px; font-weight: 600; color: #fff; }

@keyframes slideInLeft { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.page-hero-breadcrumb {
  animation: slideInLeft 0.5s ease 0s both;
}
.page-hero-label {
  animation: slideInLeft 0.6s ease 0.1s both;
}
.page-hero-title {
  animation: slideInRight 0.65s ease 0.2s both;
}
.page-hero-desc {
  animation: slideInUp 0.6s ease 0.35s both;
}

.post-hero { background: linear-gradient(135deg, #0C1B33 0%, #0F2D52 60%, #0C3A6B 100%); padding: 140px 0 70px; padding-top: 140px !important; text-align: center; }
.post-hero h1 { color: #fff; font-size: clamp(1.6rem,4vw,2.6rem); margin-bottom: 16px; }
.post-meta-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; align-items: center; justify-content: center; }
.post-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.7); }
.post-meta-item i { font-size: 15px; color: #38BDF8; }
.post-cat-badge { display: inline-block; padding: 4px 12px; background: rgba(56,189,248,0.15); border: 1px solid rgba(56,189,248,0.3); border-radius: 20px; font-size: 12px; font-weight: 500; color: #38BDF8; margin-bottom: 16px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; margin-bottom: 28px; transition: color 0.2s; }
.back-link:hover { color: #fff; }

.proj-hero { background: linear-gradient(135deg, #0C1B33 0%, #0F2D52 60%, #0C3A6B 100%); padding: 140px 0 70px; padding-top: 140px !important; text-align: center; }
.proj-hero h1 { color: #fff; margin-bottom: 12px; }
.proj-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; margin-inline: auto; }
.proj-meta-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; justify-content: center; }
.proj-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.proj-meta-item i { font-size: 16px; color: #38BDF8; }

.post-layout, .proj-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.post-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 1px solid #E0F2FE;
}

.post-body { font-size: 16px; line-height: 1.8; color: #334155; }
.post-body > *:first-child { margin-top: 0; }
.post-body h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin: 40px 0 16px; color: #0C1B33; }
.post-body h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin: 32px 0 14px; color: #0C1B33; }
.post-body h4 { margin: 24px 0 10px; color: #0C1B33; }
.post-body p { margin-bottom: 20px; color: #475569; }
.post-body ul, .post-body ol { margin: 0 0 20px 22px; color: #475569; display: flex; flex-direction: column; gap: 8px; }
.post-body li { line-height: 1.7; }
.post-body a { color: #0B7FEC; text-decoration: underline; text-underline-offset: 2px; }
.post-body img { width: 100%; height: auto; border-radius: 12px; margin: 28px 0; border: 1px solid #E0F2FE; }
.post-body blockquote { margin: 28px 0; padding: 16px 24px; border-left: 3px solid #0EA5E9; background: #F8FAFD; border-radius: 0 10px 10px 0; color: #334155; font-style: italic; }
.post-body pre { margin: 24px 0; padding: 18px 20px; background: #0C1B33; color: #E2E8F0; border-radius: 10px; overflow-x: auto; font-size: 13.5px; line-height: 1.6; }
.post-body code { background: #F1F5F7; color: #0B7FEC; padding: 2px 6px; border-radius: 5px; font-size: 0.9em; }
.post-body pre code { background: none; color: inherit; padding: 0; }
.post-body hr { border: none; border-top: 1px solid #E0F2FE; margin: 32px 0; }

.sidebar-card {
  background: #fff;
  border: 1px solid #E0F2FE;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card:last-child { margin-bottom: 0; }
.sidebar-card h2, .sidebar-card h3, .sidebar-card h4 { font-size: 15px; margin-bottom: 16px; color: #0C1B33; }
.sidebar-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #F1F5F7; font-size: 13px; }
.sidebar-row:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-row > span:first-child { color: #5B6B7D; }
.sidebar-row > span:last-child { color: #0F2D52; font-weight: 500; text-align: right; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.detail-section { margin-bottom: 36px; }
.detail-section:last-child { margin-bottom: 0; }
.detail-section h2, .detail-section h3 { display: flex; align-items: center; gap: 10px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: #0C1B33; margin-bottom: 14px; }
.detail-section h2 i, .detail-section h3 i { color: #0B7FEC; font-size: 20px; }
.detail-section p { color: #475569; line-height: 1.8; }

.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.gallery { margin-bottom: 36px; }
.gallery-main {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  object-fit: contain;
  background: #F8FAFD;
  border-radius: 16px;
  border: 1px solid #E0F2FE;
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.gallery-main:hover { opacity: 0.92; }
.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.gallery-thumb {
  width: 76px; height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.gallery-thumb:hover { opacity: 0.9; }
.gallery-thumb.active { opacity: 1; border-color: #0B7FEC; }

.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(12,27,51,0.92);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 40px 20px;
  opacity: 0; transition: opacity 0.2s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; width: auto; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 1200px) {
  .container { padding-inline: 32px; }
  .section { padding-block: 96px; }
  .nav-links { gap: 24px; }
  .nav-link { font-size: 13px; }
}

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .testi-slide { flex: 0 0 calc(50% - 12px); }
  .footer-grid { gap: 40px 32px; }
}

@media (max-width: 960px) {
  .container { padding-inline: 24px; }
  .section { padding-block: 80px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .hero-inner { gap: 36px; }
  .process-grid { gap: 24px; }
}

@media (max-width: 900px) {

  .nav-links { display: none; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav { height: 80px; }
  .nav-inner { height: 80px; }
  .nav-logo img { max-height: 60px; max-width: 130px; width: auto; height: auto; }
  .nav-offset { padding-top: 80px; }

  .hero { padding-block: 100px 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-img { display: none; }

  .about-story-inner { grid-template-columns: 1fr; gap: 32px; }

  .about-story-inner > div:first-child { text-align: center; }
  .about-story-inner .section-label { text-align: center; }
  .about-story-img { order: -1; border-radius: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .grid-3, .grid-3.projects-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-slide { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }

  .pre-header { height: 32px; padding: 0; }
  .pre-header-inner { flex-direction: row; gap: 12px; align-items: center; justify-content: center; }
  .pre-header-left { gap: 12px; justify-content: center; }
  .pre-header-right { display: none; }
  .pre-header-link { font-size: 11px; }
  .nav { top: 0 !important; }

  .post-hero, .proj-hero { padding-top: 152px !important; }
  .post-layout, .proj-layout { gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding-inline: 20px; }
  .service-card { padding: 24px 20px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery-main { max-height: 480px; }
  .gallery-thumb { width: 64px; height: 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .contact-form-card, .contact-info-card { padding: 28px; }
}

@media (max-width: 600px) {
  .container { padding-inline: 16px; }
  .section { padding-block: 56px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-brand-desc { max-width: 340px; margin-inline: auto; }
  .footer-tagline-text { text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-heading {
    display: block;
    border-bottom: none;
    margin-bottom: 14px;
    padding-bottom: 0;
    font-size: 13px;
  }
  .footer-links { align-items: center; }
  .footer-contact-item { justify-content: center; text-align: center; }
  .footer-contact-item i { margin-top: 3px; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 2rem; }

  .section-header { margin-bottom: 36px; text-align: center; }
  .section-sub { font-size: 1rem; text-align: center; margin-inline: auto; }
  .section-label { text-align: center; display: block; }
  h1, h2, h3 { text-align: center; }

  .post-body h2, .post-body h3, .post-body h4,
  .detail-section h2, .detail-section h3, .detail-section h4 { text-align: left; }
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); letter-spacing: -0.01em; }
  h3 { font-size: clamp(1rem, 4vw, 1.2rem); }

  .process-step { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
  .process-number { flex-shrink: 0; }
  .service-card { text-align: center; }
  .service-icon { margin-inline: auto; }
  .service-tags { justify-content: center; }
  .value-card { text-align: center; align-items: center; }
  .value-icon { margin-inline: auto; }
  .stat-item { text-align: center; }

  .blog-card { text-align: center; }
  .blog-meta { justify-content: center; }
  .blog-excerpt { display: none; }
  .blog-body { padding: 18px 16px 20px; }
  .blog-title { font-size: 15px; margin-bottom: 8px; }
  .blog-cat { margin-bottom: 6px; }
  .blog-grid { grid-template-columns: 1fr; }

  .project-thumb { aspect-ratio: 16/9; }
  .project-body { padding: 16px 18px 18px; text-align: center; }
  .project-actions { flex-direction: column; justify-content: center; }
  .project-actions .btn { width: 100%; justify-content: center; }
  .grid-3.projects-grid { grid-template-columns: 1fr; }

  .tech-tags { justify-content: center; }
  .team-card { text-align: center; }
  .testi-card { text-align: center; }

  .cta-banner-inner { padding: 40px 20px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .proj-layout, .post-layout { grid-template-columns: 1fr; gap: 32px; }

  .footer-body { padding: 40px 0 32px; }

  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 6px; }

  .btn-lg { padding: 13px 24px; font-size: 15px; }

  .form-row { flex-direction: column; }
  .form-input, .form-textarea { font-size: 16px; }

  .contact-grid { gap: 20px; }
  .contact-form-card, .contact-info-card { padding: 24px 20px; }

  .contact-form-card h2, .contact-form-card h3, .contact-form-card p,
  .contact-info-card h2, .contact-info-card h3,
  .contact-info-label, .contact-info-value { text-align: left; }
  .contact-info-item { gap: 12px; margin-bottom: 18px; }
  .contact-info-icon { width: 36px; height: 36px; font-size: 16px; }
  .contact-info-value { word-break: break-word; }
  .form-submit { width: 100%; }
  .contact-hero { padding-block: 40px 52px; }
}

@media (max-width: 480px) {
  .stats-grid { gap: 16px; }
  .stat-number { font-size: 1.75rem; }
  .service-icon { width: 44px; height: 44px; }
  .value-icon { width: 40px; height: 40px; }
  .team-initials { width: 64px; height: 64px; font-size: 26px; }
  .contact-form-card, .contact-info-card { padding: 22px 18px; }
}

@media (max-width: 430px) {
  .footer-social { width: 32px; height: 32px; font-size: 14px; }
  .footer-socials { gap: 8px; }
  .footer-heading { margin-bottom: 14px; padding-bottom: 8px; }
}

@media (max-width: 420px) {
  .footer-tagline-text { display: none; }
  .nav-logo { gap: 6px; }
  .btn { padding: 10px 20px; }

  .nav-cta.btn-sm { padding: 7px 12px; font-size: 12px; }
  .nav-right { gap: 8px; }
}

@media (max-width: 400px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-socials { gap: 8px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .card { padding: 20px; }
  .service-card { padding: 20px 16px; }
  .contact-form-card, .contact-info-card { padding: 20px 16px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }
}

@media (max-width: 360px) {
  .hero-tag { font-size: 10px; padding: 5px 12px; }
  .nav-logo { font-size: 15px; }
  h1 { font-size: clamp(1.7rem, 8vw, 3.2rem); }
  .nav-cta.btn-sm { padding: 6px 10px; font-size: 11px; }
  .nav-right { gap: 6px; }
}

@media (max-width: 340px) {
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  .contact-form-card, .contact-info-card { padding: 18px 14px; }
  .contact-info-icon { width: 32px; height: 32px; font-size: 15px; }
}
