
:root {
  --blue: #0DA8D3;
  --green: #1DA581;
  --blue-dark: #087fa0;
  --green-dark: #137f64;
  --dark: #061b27;
  --dark-2: #0b2635;
  --ink: #102532;
  --muted: #637989;
  --line: rgba(13, 168, 211, 0.16);
  --soft: #f4fbfd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 27, 39, 0.12);
  --shadow-soft: 0 18px 44px rgba(6, 27, 39, 0.09);
  --radius: 28px;
  --radius-sm: 18px;
  --transition: 250ms ease;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Poppins, "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfdff;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  transform: translateY(-140%);
  z-index: 1000;
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  transition: var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top left, rgba(13, 168, 211, 0.18), transparent 35%), radial-gradient(circle at bottom right, rgba(29, 165, 129, 0.2), transparent 35%), #ffffff;
  z-index: 999;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  width: min(320px, 76vw);
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.loader-card img {
  width: 230px;
  margin: 0 auto 18px;
}

.loader-bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(13, 168, 211, 0.12);
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  animation: loaderMove 1.1s ease-in-out infinite;
}

@keyframes loaderMove {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(240%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 168, 211, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 12px 40px rgba(6, 27, 39, 0.09);
  background: rgba(255, 255, 255, 0.94);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 184px;
  max-height: 58px;
  object-fit: contain;
}

.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.94rem;
  color: #304656;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--dark);
  background: linear-gradient(135deg, rgba(13, 168, 211, 0.12), rgba(29, 165, 129, 0.12));
}

.nav-cta {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 0.94rem;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 28px rgba(13, 168, 211, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(13, 168, 211, 0.28);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(13, 168, 211, 0.1);
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: var(--dark);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 108px 0;
  position: relative;
}

.soft-bg {
  background: linear-gradient(180deg, #f5fbfe, #ffffff);
}

.dark-section {
  background: radial-gradient(circle at 12% 12%, rgba(13, 168, 211, 0.26), transparent 32%), radial-gradient(circle at 82% 22%, rgba(29, 165, 129, 0.22), transparent 34%), linear-gradient(135deg, var(--dark), var(--dark-2));
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.light-text h2,
.light-text p {
  color: #fff;
}

.light-text p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.dark-section .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.cta-card .eyebrow {
  color: #78ffe1;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--dark);
}

.dark-section h2,
.dark-section h3,
.hero h1,
.page-hero h1,
.cta-card h2 {
  color: var(--white);
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero,
.page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #061b27 0%, #082b3d 45%, #083d45 100%);
}

.home-hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 100px 0 110px;
}

.page-hero {
  padding: 112px 0 104px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.68;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-one {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -120px;
  background: radial-gradient(circle, rgba(13, 168, 211, 0.72), transparent 68%);
}

.orb-two {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 12%;
  background: radial-gradient(circle, rgba(29, 165, 129, 0.58), transparent 68%);
  animation-delay: -2s;
}

.orb-three {
  width: 240px;
  height: 240px;
  left: 45%;
  bottom: -90px;
  background: radial-gradient(circle, rgba(13, 168, 211, 0.45), transparent 68%);
  animation-delay: -3.5s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 82%);
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(22px, 28px, 0) scale(1.05); }
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
}

.hero-text,
.page-hero-content p:last-child {
  max-width: 710px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 18px 42px rgba(13, 168, 211, 0.26);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline {
  border: 1px solid rgba(13, 168, 211, 0.22);
  color: var(--dark);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-light {
  color: var(--dark);
  background: #fff;
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.15);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.glass-panel,
.code-window,
.metric-badge,
.service-card,
.glass-card,
.project-card,
.testimonial-slider,
.contact-form-card,
.contact-details,
.value-card,
.process-card,
.feature-card,
.tech-card,
.service-detail-card,
.testimonial-card,
.about-panel,
.deliverables-list,
.checklist,
.faq-item,
.service-summary-card {
  border: 1px solid rgba(13, 168, 211, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

.brand-card {
  position: absolute;
  top: 32px;
  left: 28px;
  width: min(420px, 88%);
  padding: 26px;
  backdrop-filter: blur(20px);
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}

.brand-card img {
  width: 100%;
  margin-bottom: 10px;
}

.brand-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  text-align: center;
}

.code-window {
  position: absolute;
  right: 5px;
  bottom: 54px;
  width: min(430px, 86%);
  padding: 20px;
  background: rgba(7, 28, 41, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  z-index: 4;
  animation: floatCard 7s ease-in-out infinite reverse;
}

.code-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  opacity: 0.85;
}

pre {
  margin: 0;
  white-space: pre-wrap;
  color: #bff6ea;
  font-size: 0.95rem;
  line-height: 1.7;
}

.metric-badge {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  z-index: 5;
}

.metric-badge strong {
  color: var(--dark);
  font-size: 1.65rem;
  line-height: 1;
}

.metric-badge span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.badge-a {
  right: 18px;
  top: 18px;
}

.badge-b {
  left: 8px;
  bottom: 78px;
}

.shape-chip {
  position: absolute;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  opacity: 0.75;
  filter: drop-shadow(0 16px 30px rgba(13, 168, 211, 0.25));
  animation: spinSoft 13s linear infinite;
}

.chip-a {
  width: 86px;
  height: 86px;
  right: 110px;
  top: 152px;
}

.chip-b {
  width: 54px;
  height: 54px;
  left: 105px;
  bottom: 20px;
  animation-delay: -4s;
}

@keyframes floatCard {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes spinSoft {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stats-strip {
  position: relative;
  z-index: 5;
  margin-top: -52px;
  padding-bottom: 30px;
}

.inner-stats {
  margin-top: -42px;
  padding-bottom: 0;
}

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

.stat-card {
  padding: 24px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.stat-card strong {
  display: inline-flex;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card strong::after {
  content: "+";
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p:last-child,
.section-copy p {
  margin-top: 16px;
}

.section-copy .btn {
  margin-top: 28px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 62px;
}

.split-layout.reverse {
  grid-template-columns: 0.92fr 1fr;
}

.mission-stack,
.mission-grid-large {
  display: grid;
  gap: 20px;
}

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

.glass-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.glass-card::before,
.service-card::before,
.service-detail-card::before,
.project-card::before,
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(13, 168, 211, 0.58), rgba(29, 165, 129, 0.46), transparent 62%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.glass-card:hover::before,
.service-card:hover::before,
.service-detail-card:hover::before,
.project-card:hover::before,
.value-card:hover::before {
  opacity: 1;
}

.card-kicker,
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(29, 165, 129, 0.11);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.glass-card h3,
.glass-card h2 {
  margin-top: 14px;
}

.glass-card p {
  margin-top: 14px;
}

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

.service-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-icon,
.detail-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 16px 32px rgba(13, 168, 211, 0.22);
}

.service-card h3 {
  margin-top: 22px;
}

.service-card p,
.value-card p,
.feature-card p,
.process-card p,
.tech-card p,
.service-detail-card p,
.testimonial-card p,
.project-card p {
  margin-top: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  padding: 0;
  font-weight: 950;
}

.text-link:hover {
  color: var(--blue-dark);
}

.feature-grid,
.values-grid,
.process-grid,
.tech-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.feature-card,
.process-card,
.value-card,
.tech-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.dark-section .feature-card,
.dark-section .tech-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.light-features .feature-card {
  background: #fff;
}

.feature-card span,
.value-card span,
.process-card strong,
.timeline-item span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(13, 168, 211, 0.15), rgba(29, 165, 129, 0.16));
  color: var(--green-dark);
  font-weight: 950;
}

.dark-section .feature-card span,
.dark-section .tech-card span,
.dark-section .timeline-item span {
  color: #a7fff0;
  background: rgba(255, 255, 255, 0.1);
}

.feature-card h3,
.process-card h3,
.value-card h3,
.tech-card h3 {
  margin-top: 18px;
}

.dark-section .feature-card p,
.dark-section .tech-card p,
.dark-section .timeline-item p {
  color: rgba(255, 255, 255, 0.72);
}

.process-card {
  background: #fff;
}

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

.project-card {
  overflow: hidden;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  position: relative;
}

.project-card.hide {
  transform: scale(0.94);
  opacity: 0;
  display: none;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.project-visual {
  min-height: 190px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13, 168, 211, 0.18), rgba(29, 165, 129, 0.18));
}

.project-visual::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(22deg);
  transition: transform 450ms ease;
}

.project-card:hover .project-visual::before {
  transform: rotate(36deg) scale(1.12);
}

.project-visual span {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 42px rgba(13, 168, 211, 0.22);
}

.visual-web { background: linear-gradient(135deg, rgba(13, 168, 211, 0.16), rgba(42, 214, 255, 0.2)); }
.visual-mobile { background: linear-gradient(135deg, rgba(29, 165, 129, 0.16), rgba(13, 168, 211, 0.2)); }
.visual-erp { background: linear-gradient(135deg, rgba(7, 31, 45, 0.12), rgba(13, 168, 211, 0.2)); }
.visual-wp { background: linear-gradient(135deg, rgba(13, 168, 211, 0.16), rgba(15, 96, 130, 0.18)); }
.visual-iot { background: linear-gradient(135deg, rgba(29, 165, 129, 0.18), rgba(104, 255, 224, 0.2)); }
.visual-python { background: linear-gradient(135deg, rgba(13, 168, 211, 0.16), rgba(29, 165, 129, 0.24)); }
.visual-design { background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(13, 168, 211, 0.2)); }

.project-body {
  padding: 26px;
}

.project-body h3 {
  margin-top: 14px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 253, 251, 0.88));
}

.large-slider {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-track {
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.stars {
  color: #f4b93f;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.testimonial-slide p,
.testimonial-card p {
  color: #405665;
  font-size: 1.08rem;
}

.testimonial-slide h3,
.testimonial-card h3 {
  margin-top: 24px;
}

.testimonial-slide span,
.testimonial-card span {
  color: var(--muted);
  font-weight: 800;
  margin-top: 4px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.slider-controls button,
.filter-btn,
.back-to-top {
  border: 0;
  background: rgba(13, 168, 211, 0.1);
  color: var(--dark);
  border-radius: 999px;
  font-weight: 950;
  transition: var(--transition);
}

.slider-controls button {
  width: 46px;
  height: 46px;
}

.slider-controls button:hover,
.filter-btn:hover,
.filter-btn.active,
.back-to-top:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex: 1;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(13, 168, 211, 0.16);
}

.slider-dots button.active {
  width: 26px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.cta-section {
  padding: 0 0 108px;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 46px;
  border-radius: 34px;
  color: #fff;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 38%), linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 26px 70px rgba(13, 168, 211, 0.22);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.84);
  margin-top: 12px;
}

.page-hero-content {
  max-width: 900px;
}

.about-panel {
  padding: 32px;
  background: #fff;
}

.about-panel img {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 22px;
}

.about-highlight {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(13, 168, 211, 0.1), rgba(29, 165, 129, 0.12));
}

.about-highlight span {
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.about-highlight strong {
  display: block;
  color: var(--dark);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.timeline-item h3 {
  margin-top: 18px;
}

.industries-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.industries-grid span,
.quality-grid span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--dark);
  font-weight: 900;
}

.service-summary-card {
  padding: 42px;
  background: linear-gradient(135deg, rgba(13, 168, 211, 0.1), rgba(29, 165, 129, 0.1)), #fff;
}

.service-summary-card strong {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--dark);
}

.service-summary-card span {
  display: block;
  margin-top: 6px;
  font-weight: 950;
  color: var(--green-dark);
}

.service-summary-card p {
  margin-top: 18px;
}

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

.service-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 30px;
  overflow: hidden;
}

.service-detail-card ul,
.deliverables-list ul,
.checklist ul,
#modalFeatures {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-detail-card li,
.deliverables-list li,
.checklist li,
#modalFeatures li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.service-detail-card li::before,
.deliverables-list li::before,
.checklist li::before,
#modalFeatures li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.tech-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.deliverables-list,
.checklist {
  padding: 34px;
  background: #fff;
}

.deliverables-list h3 {
  margin-bottom: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -18px auto 38px;
  max-width: 1000px;
}

.filter-btn {
  padding: 11px 15px;
  font-size: 0.92rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 24, 0.72);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 30px;
  background: #fff;
  padding: 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.96);
  transition: transform var(--transition);
}

.modal.open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel h2 {
  margin-top: 16px;
}

.modal-panel h3 {
  margin-top: 24px;
}

.modal-panel p {
  margin-top: 14px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 99px;
  background: rgba(13, 168, 211, 0.1);
  color: var(--dark);
  font-size: 1.4rem;
}

.testimonial-card {
  padding: 28px;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.contact-form-card {
  padding: 36px;
  background: #fff;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full-row {
  grid-column: 1 / -1;
}

label {
  color: var(--dark);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(13, 168, 211, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f9fdff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(13, 168, 211, 0.64);
  box-shadow: 0 0 0 5px rgba(13, 168, 211, 0.1);
  background: #fff;
}

.contact-form .btn {
  width: fit-content;
}

.form-status {
  align-self: center;
  color: var(--green-dark);
  font-weight: 900;
}

.form-status.error {
  color: #b42318;
}

.contact-details {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13, 168, 211, 0.08), rgba(29, 165, 129, 0.09));
  border: 1px solid rgba(13, 168, 211, 0.12);
}

.contact-card span {
  display: block;
  color: var(--green-dark);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  margin-bottom: 6px;
}

.contact-card a,
.contact-card p {
  color: var(--dark);
  font-weight: 900;
}

.map-placeholder {
  min-height: 245px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 30% 25%, rgba(13, 168, 211, 0.28), transparent 38%), radial-gradient(circle at 70% 80%, rgba(29, 165, 129, 0.25), transparent 40%), #eaf8fb;
  border: 1px solid var(--line);
}

.map-placeholder strong {
  color: var(--dark);
  font-size: 1.35rem;
}

.map-placeholder p {
  font-weight: 800;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  color: var(--dark);
  font-weight: 950;
  text-align: left;
}

.faq-item button span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 99px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer p {
  padding: 0 24px 22px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 26px;
  color: rgba(255, 255, 255, 0.74);
  background: linear-gradient(135deg, #051721, #082838 58%, #063b3d);
}

.footer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 165, 129, 0.42), transparent 68%);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.78fr 0.92fr 1.15fr;
  gap: 34px;
}

.footer-logo {
  display: inline-flex;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 220px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.74);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.74);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact span {
  display: block;
  color: #78ffe1;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a {
  font-weight: 900;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  box-shadow: var(--shadow-soft);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }
.delay-3 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .nav-cta { display: none; }
  .brand-logo { width: 166px; }
  .hero-layout,
  .split-layout,
  .split-layout.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 470px;
  }
  .services-grid,
  .projects-grid,
  .values-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid,
  .process-grid,
  .tech-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .navbar {
    min-height: 74px;
  }
  .brand-logo {
    width: 150px;
  }
  .nav-toggle {
    display: block;
    z-index: 130;
  }
  .nav-menu {
    position: fixed;
    inset: 74px 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu a {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
  }
  .home-hero {
    min-height: auto;
    padding: 74px 0 92px;
  }
  .page-hero {
    padding: 84px 0 88px;
  }
  .section {
    padding: 82px 0;
  }
  .cta-section {
    padding-bottom: 82px;
  }
  .hero-layout {
    gap: 44px;
  }
  .hero-visual {
    min-height: 440px;
  }
  .stats-grid,
  .mission-grid-large,
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }
  h2 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }
  .hero-actions,
  .hero-trust {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .btn,
  .hero-trust span,
  .contact-form .btn {
    width: 100%;
  }
  .hero-visual {
    min-height: 420px;
  }
  .brand-card {
    left: 0;
    top: 12px;
    width: 100%;
    padding: 20px;
  }
  .code-window {
    right: 0;
    bottom: 58px;
    width: 100%;
  }
  .badge-a {
    top: 142px;
    right: 0;
  }
  .badge-b {
    left: 0;
    bottom: 0;
  }
  .chip-a,
  .chip-b {
    display: none;
  }
  .stats-grid,
  .services-grid,
  .projects-grid,
  .values-grid,
  .testimonial-grid,
  .feature-grid,
  .process-grid,
  .tech-grid,
  .timeline,
  .mission-grid-large,
  .service-detail-grid,
  .industries-grid,
  .quality-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-strip,
  .inner-stats {
    margin-top: -32px;
  }
  .service-detail-card {
    grid-template-columns: 1fr;
  }
  .glass-card,
  .service-card,
  .feature-card,
  .process-card,
  .value-card,
  .tech-card,
  .service-detail-card,
  .testimonial-slider,
  .contact-form-card,
  .contact-details,
  .deliverables-list,
  .checklist,
  .about-panel,
  .service-summary-card {
    border-radius: 22px;
    padding: 24px;
  }
  .project-body {
    padding: 22px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo img {
    width: 190px;
  }
  .modal-panel {
    padding: 30px 22px;
  }
}

/* Dynamic website additions */
.alert {
  padding: 14px 18px;
  border-radius: 16px;
  margin: 16px 0;
  font-weight: 850;
  border: 1px solid rgba(13, 168, 211, 0.16);
  background: rgba(13, 168, 211, 0.08);
  color: var(--dark);
}
.alert.success {
  border-color: rgba(29, 165, 129, 0.24);
  background: rgba(29, 165, 129, 0.1);
  color: var(--green-dark);
}
.alert.error {
  border-color: rgba(180, 35, 24, 0.24);
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
}
.dynamic-empty {
  padding: 26px;
  border-radius: 24px;
  background: rgba(13, 168, 211, 0.06);
  border: 1px dashed rgba(13, 168, 211, 0.22);
  color: var(--muted);
  font-weight: 800;
}
.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.channel-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  margin-bottom: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 950;
}
.map-placeholder iframe {
  width: 100%;
  height: 245px;
  border: 0;
  border-radius: 24px;
}
.small-note {
  color: var(--muted);
  font-size: .92rem;
}
