:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Inter", sans-serif;
  --background-color: #0a1020;
  --default-color: #aeb9cc;
  --heading-color: #ffffff;
  --accent-color: #38bdf8;
  --surface-color: #192134;
  --contrast-color: #ffffff;
  --nav-color: #aeb9cc;
  --nav-hover-color: #38bdf8;
  --nav-mobile-background-color: #0a1020;
  --nav-dropdown-background-color: #0a1020;
  --nav-dropdown-color: #aeb9cc;
  --nav-dropdown-hover-color: #38bdf8;
}

.light-background {
  --background-color: #0f1626;
  --surface-color: #18203a;
}

html { scroll-behavior: smooth; }

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.25;
  z-index: 0;
  animation: floatOrb 20s ease-in-out infinite alternate;
}

body::before {
  top: 8%;
  left: -80px;
  background: rgba(56, 189, 248, 0.5);
}

body::after {
  right: -100px;
  bottom: 10%;
  background: rgba(160, 81, 255, 0.28);
  animation-delay: 3s;
}

@keyframes floatOrb {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -25px, 0) scale(1.08); }
  100% { transform: translate3d(-20px, 30px, 0) scale(0.94); }
}

body.scrolled .header {
  background-color: rgba(17, 22, 38, 0.92);
  border-bottom-color: transparent;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 9px 0;
}

img { max-width: 100%; }

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color) 76%, white 24%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.header {
  color: var(--default-color);
  background-color: rgba(10, 16, 32, 0.82);
  border-bottom: 1px solid rgba(174, 185, 204, 0.12);
  padding: 14px 0;
  transition: all 0.4s ease;
  z-index: 997;
}

.header .logo { line-height: 1; }

.header .logo .header-logo-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: block;
  margin-right: 12px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.25);
}

.header .logo .mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #f06cae));
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.35);
}

.header .logo .sitename {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--heading-color);
}

.header .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #f06cae));
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.header .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(56, 189, 248, 0.4);
  color: var(--contrast-color);
}

.header .cta-btn:hover i { transform: translate(2px, -2px); }

.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navmenu li { position: relative; margin: 0 2px; }

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 15px;
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navmenu a::after,
.navmenu a:focus::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.navmenu a:hover::after,
.navmenu .active::after {
  transform: scaleX(1);
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}

.mobile-nav-toggle {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
  isolation: isolate;
}

section::before,
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%, rgba(255,255,255,0.015));
  pointer-events: none;
  z-index: -1;
}

.reveal-target {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.8s ease;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

.branch-scroll-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.branch-scroll-section .section-title {
  padding-bottom: 48px;
}

.branch-scroll-wrap {
  position: static;
  height: auto;
}

.branch-scroll-stage {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: visible;
}

.branch-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  transform: none !important;
}

.branch-card {
  min-width: 0;
  min-height: 300px;
  height: auto;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(25, 33, 52, 0.96), rgba(15, 22, 38, 0.94));
  border: 1px solid rgba(174, 185, 204, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.branch-card .branch-title {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.branch-card p {
  margin: 0 0 12px;
  line-height: 1.7;
}

.branch-card a {
  display: block;
  margin-top: 8px;
  color: var(--default-color);
}

.branch-card a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .branch-scroll-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .branch-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .branch-scroll-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .branch-scroll-section .section-title {
    padding-bottom: 36px;
  }

  .branch-scroll-stage {
    padding: 0 16px;
  }

  .branch-track {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .branch-card {
    min-height: 0;
    padding: 24px 20px;
  }
}

.hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate3d(-50%, var(--hero-shift, 0px), 0);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.18), transparent 65%);
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.8; filter: blur(0px); }
  100% { opacity: 1; filter: blur(8px); }
}

.hero .avatar,
.product-card,
.branch-card,
.feature-panel,
.q-card,
.row-item,
.counter {
  will-change: transform;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .avatar {
  position: relative;
  isolation: isolate;
  width: clamp(176px, 24vw, 282px);
  aspect-ratio: 4 / 5;
  height: auto;
  margin: 0 auto 46px;
  padding: 8px 8px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
  overflow: visible;
}

.hero .avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border: 0;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.26));
  transform: translateY(2px);
}

.hero .avatar::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 180%;
  height: 82%;
  left: -40%;
  bottom: -26%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22), transparent 64%);
  pointer-events: none;
}

.hero .avatar::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 35%;
  right: 0;
  bottom: -15px;
  left: 0;
  border-radius: 90px 90px 0px 0px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.95), rgba(56, 189, 248, 0.2) 46%, rgba(25, 33, 52, 0.9));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 46px rgba(56, 189, 248, 0.16);
  pointer-events: none;
}

@media (max-width: 575px) {
  .hero .avatar {
    width: clamp(164px, 52vw, 220px);
    margin-bottom: 38px;
  }

  .hero .avatar::after {
    top: 30%;
    bottom: -10px;
    border-radius: 65px 65px 0px 0px;
  }
}

.hero .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 24px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .status .ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.hero h1 {
  font-size: 48px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h3 .hl { color: var(--accent-color); }

.hero-brand-grid {
  width: min(100%, 420px);
  margin: 22px auto 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.hero-brand-logo {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(174, 185, 204, 0.12);
  border-radius: 12px;
  background: rgba(25, 33, 52, 0.72);
}

.hero-brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero .lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero .btn-main,
.hero .btn-line,
.experience .btn-main,
.cta .btn-main,
.service-details .btn-main,
.portfolio-details .btn-main,
.contact .php-email-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #f06cae));
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 16px;
  border: none;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.hero .btn-line {
  background: transparent;
  border: 1px solid rgba(174, 185, 204, 0.2);
  color: var(--heading-color);
}

.hero .btn-main:hover,
.experience .btn-main:hover,
.cta .btn-main:hover,
.service-details .btn-main:hover,
.portfolio-details .btn-main:hover,
.contact .php-email-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.4);
  color: var(--contrast-color);
}

.hero .btn-line:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.hero .socials {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.hero .socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.1);
  color: var(--heading-color);
  font-size: 18px;
}

.hero .socials a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.clients {
  padding: 72px 0;
  overflow: hidden;
}

.clients .eyebrow {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(174, 185, 204, 0.7);
  margin-bottom: 34px;
}

.brand-marquee {
  display: grid;
  gap: 18px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  mask-image: none;
  -webkit-mask-image: none;
}

.brand-marquee-row {
  width: 100%;
  overflow: hidden;
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation-duration: 88s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.brand-track-left { animation-name: brand-marquee-left; }
.brand-track-right { animation-name: brand-marquee-right; }

.brand-logo {
  flex: 0 0 clamp(142px, 13vw, 194px);
  width: clamp(142px, 13vw, 194px);
  height: 96px;
  margin-right: 18px;
  padding: 16px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(174, 185, 204, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
}

.brand-marquee-row:hover .brand-marquee-track {
  animation-play-state: paused;
}

@keyframes brand-marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes brand-marquee-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation-play-state: paused;
    transform: none !important;
  }
}

.about .story {
  font-size: 20px;
  line-height: 1.8;
  color: var(--heading-color);
  margin-bottom: 56px;
}

.about .counters .counter {
  text-align: center;
  padding: 32px 16px;
  border-radius: 18px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about .counters .counter:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 36px rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.28);
}

.about .counters .counter .purecounter,
.about .counters .counter .plus {
  font-size: 44px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--accent-color);
  line-height: 1;
}

.about .counters .counter .plus { margin-left: 2px; }

.about .counters .counter p {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--default-color);
}

.services .service-rows .row-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 8px;
  border-top: 1px solid rgba(174, 185, 204, 0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services .service-rows .row-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.16), transparent);
  transition: width 0.4s ease;
  z-index: 0;
}

.services .service-rows .row-item > * {
  position: relative;
  z-index: 1;
}

.services .service-rows .row-item:last-child { border-bottom: 1px solid rgba(174, 185, 204, 0.12); }

.services .service-rows .row-item .n {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: rgba(56, 189, 248, 0.4);
  min-width: 56px;
  transition: color 0.3s ease;
}

.services .service-rows .row-item .body { flex: 1; }

.services .service-rows .row-item .body h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.services .service-rows .row-item .body p { font-size: 16px; margin: 0; }

.services .service-rows .row-item > i {
  font-size: 24px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.services .service-rows .row-item:hover {
  padding-left: 24px;
  transform: translateY(-3px);
  box-shadow: 0 18px 28px rgba(0,0,0,0.08);
}

.services .service-rows .row-item:hover::before { width: 100%; }

.services .service-rows .row-item:hover .n,
.services .service-rows .row-item:hover .body h3,
.services .service-rows .row-item:hover > i { color: var(--accent-color); }

.services .service-rows .row-item:hover > i { transform: translate(4px, -4px); }

.skills .intro h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}

.skills .intro p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.skills .intro .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills .intro .tags span {
  padding: 8px 16px;
  border-radius: 24px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.1);
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.skills .skills-animation .progress {
  display: block;
  height: auto;
  background: none;
  border-radius: 0;
  margin-bottom: 24px;
  overflow: visible;
}

.skills .skills-animation .progress .skill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 16px;
}

.skills .skills-animation .progress .skill .val {
  font-style: normal;
  color: var(--accent-color);
  font-size: 14px;
}

.skills .skills-animation .progress .bar {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: rgba(174, 185, 204, 0.12);
  overflow: hidden;
}

.skills .skills-animation .progress .progress-bar {
  width: 0;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--accent-color), rgba(56, 189, 248, 0.7));
  transition: width 1.2s ease-in-out;
}

.experience .col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.experience .col-head i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-color);
  font-size: 22px;
}

.experience .col-head h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.experience .timeline {
  position: relative;
  padding-left: 28px;
}

.experience .timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(174, 185, 204, 0.12);
}

.experience .item {
  position: relative;
  padding-bottom: 32px;
}

.experience .item:last-child { padding-bottom: 0; }

.experience .item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}

.experience .item .year {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.experience .item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.experience .item .org {
  display: block;
  font-size: 14px;
  color: rgba(174, 185, 204, 0.75);
  margin-bottom: 10px;
}

.experience .item p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.product-feature-section {
  --product-scroll-distance: 100vh;
  height: calc(100vh + var(--product-scroll-distance));
  padding: 0;
  background: #0c1220;
}

.about-why .feature-panel {
  max-width: 980px;
  margin: 0 auto;
}

.product-feature-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 88px 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.product-feature-section .section-title {
  flex: 0 0 auto;
  padding-bottom: 24px;
}

.category-marquee-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.category-row {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.category-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  width: max-content;
  padding: 6px 4vw 10px;
  will-change: transform;
}

.category-card {
  width: min(30vw, 430px);
  min-width: min(30vw, 430px);
  height: clamp(420px, calc(100vh - 255px), 600px);
  padding: 26px 28px 18px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.2);
}

.category-card.dark-card {
  background: rgba(9, 14, 22, 0.94);
  color: #f2f3f5;
}

.category-card.light-card {
  background: rgba(255,255,255,0.96);
  color: #111214;
  border-color: rgba(17,17,17,0.06);
}

.category-card h3 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 2.2vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
  font-weight: 700;
  color: inherit;
}

.category-card p {
  margin: 0;
  font-size: clamp(1.1rem, 1.1vw, 1.65rem);
  line-height: 1.5;
  max-width: 350px;
  color: inherit;
}

.category-visual {
  position: relative;
  height: 300px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 92%;
  height: 88%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.2));
}

.category-footer {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.category-card.dark-card .category-footer {
  color: #f7f7f7;
}

.category-card.light-card .category-footer {
  color: #14171d;
}

.arrow-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: inherit;
  font-size: 22px;
}

.light-card .arrow-circle {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}

.visual-orb .orb,
.visual-oval .oval,
.visual-cube .cube,
.visual-ring .ring,
.visual-slab .slab,
.visual-wave .wave,
.visual-strip .strip,
.visual-block .block {
  position: absolute;
  display: block;
}

.visual-orb .orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(149,156,167,0.75), rgba(35,40,45,0.9));
  box-shadow: inset -16px -18px 26px rgba(0,0,0,0.35), inset 24px 24px 18px rgba(255,255,255,0.2), 0 20px 32px rgba(0,0,0,0.12);
}

.visual-orb .orb-one { transform: translateX(-40px) scale(0.95); }
.visual-orb .orb-two { transform: translateX(40px) scale(0.86); }
.visual-orb .orb-three { transform: translateY(18px) scale(0.72); opacity: 0.8; }

.visual-oval .oval {
  width: 260px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(171,176,183,0.8), rgba(38,44,54,0.88));
  box-shadow: inset 0 0 20px rgba(255,255,255,0.38), inset -16px -18px 28px rgba(0,0,0,0.28), 0 18px 28px rgba(0,0,0,0.08);
}

.visual-oval .oval-one { transform: rotate(24deg) scale(1.2); }
.visual-oval .oval-two { transform: rotate(-16deg) scale(0.78) translate(60px, 20px); opacity: 0.85; }

.visual-cube .cube {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(176,182,190,0.74), rgba(58,64,72,0.88));
  box-shadow: inset -18px -14px 20px rgba(0,0,0,0.18), inset 20px 20px 18px rgba(255,255,255,0.25), 0 18px 28px rgba(0,0,0,0.14);
}

.visual-cube .cube-one { transform: translate(-30px, 8px) rotate(22deg); }
.visual-cube .cube-two { transform: translate(34px, -6px) rotate(22deg) scale(1.08); }
.visual-cube .cube-three { transform: translate(0, 52px) rotate(22deg) scale(0.7); opacity: 0.8; }

.visual-ring .ring {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 18px solid rgba(255,255,255,0.35);
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(190,196,204,0.75), rgba(72,80,92,0.88));
  box-shadow: inset 0 0 18px rgba(255,255,255,0.35), 0 18px 30px rgba(0,0,0,0.12);
}

.visual-ring .ring-one { transform: rotate(18deg) scale(0.9); }
.visual-ring .ring-two { transform: rotate(-18deg) scale(0.64) translate(20px, 18px); opacity: 0.8; }

.visual-slab .slab {
  width: 180px;
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(158,165,172,0.7), rgba(35,40,45,0.88));
  box-shadow: inset -18px -18px 24px rgba(0,0,0,0.2), inset 20px 18px 20px rgba(255,255,255,0.25), 0 18px 32px rgba(0,0,0,0.12);
}

.visual-slab .slab-one { transform: rotate(-16deg) translateX(-26px); }
.visual-slab .slab-two { transform: rotate(12deg) translateX(20px); }
.visual-slab .slab-three { transform: rotate(-8deg) scale(0.7) translateY(46px); opacity: 0.8; }

.visual-wave .wave {
  width: 260px;
  height: 130px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(170,176,182,0.8), rgba(59,65,71,0.9));
  box-shadow: inset 0 0 20px rgba(255,255,255,0.28), 0 18px 28px rgba(0,0,0,0.1);
}

.visual-wave .wave-one { transform: rotate(-14deg) scale(1.1); }
.visual-wave .wave-two { transform: rotate(16deg) scale(0.72) translate(64px, 20px); opacity: 0.82; }

.visual-strip .strip {
  width: 170px;
  height: 120px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(173,178,185,0.76), rgba(39,43,48,0.9));
  box-shadow: inset 0 0 18px rgba(255,255,255,0.22), 0 18px 30px rgba(0,0,0,0.1);
}

.visual-strip .strip-one { transform: translate(-24px, 20px) rotate(-12deg); }
.visual-strip .strip-two { transform: translate(24px, -10px) rotate(12deg); }
.visual-strip .strip-three { transform: translate(6px, 52px) scale(0.72) rotate(-6deg); opacity: 0.74; }

.visual-block .block {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(170,176,183,0.75), rgba(52,58,66,0.9));
  box-shadow: inset -14px -14px 20px rgba(0,0,0,0.18), inset 18px 18px 16px rgba(255,255,255,0.24), 0 18px 28px rgba(0,0,0,0.12);
}

.visual-block .block-one { transform: translate(-28px, 10px) rotate(24deg); }
.visual-block .block-two { transform: translate(22px, -14px) rotate(-18deg); }
.visual-block .block-three { transform: translate(58px, 28px) rotate(14deg) scale(0.72); opacity: 0.8; }

@media (max-width: 991px) {
  .product-feature-sticky {
    padding-top: 82px;
  }

  .category-card {
    width: min(78vw, 460px);
    min-width: min(78vw, 460px);
  }
}

@media (max-width: 575px) {
  .category-card {
    width: 86vw;
    min-width: 86vw;
    height: clamp(400px, calc(100vh - 220px), 560px);
    padding: 20px 18px 16px;
  }

  .category-card h3 {
    font-size: 2.05rem;
  }

  .category-card p {
    font-size: 1.05rem;
  }

  .category-visual {
    height: 220px;
  }
}

.portfolio .shot {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.portfolio .shot img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.portfolio .shot:hover img { transform: scale(1.05); }

.portfolio .copy { padding: 0 8px; }

.portfolio .copy .cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.portfolio .copy h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.portfolio .copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.portfolio .copy .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-color);
}

.portfolio .copy .more i { transition: transform 0.3s ease; }

.portfolio .copy .more:hover i { transform: translateX(4px); }

.testimonials .q-card {
  height: 100%;
  margin: 0;
  padding: 32px;
  border-radius: 20px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.testimonials .q-card .rating { display: flex; gap: 4px; margin-bottom: 18px; }

.testimonials .q-card .rating i { color: #f6b73c; font-size: 16px; }

.testimonials .q-card blockquote {
  margin: 0 0 24px;
  padding: 0;
  border: none;
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
}

.testimonials .q-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials .q-card figcaption img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .q-card figcaption .name {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}

.testimonials .q-card figcaption .role {
  display: block;
  font-size: 13px;
  color: rgba(174, 185, 204, 0.75);
}

.testimonials .q-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.09);
}

.process .step {
  position: relative;
  height: 100%;
  padding: 36px 28px;
  border-radius: 18px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process .step .num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 38px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: rgba(56, 189, 248, 0.12);
  line-height: 1;
}

.process .step i {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-color);
  font-size: 26px;
  transition: all 0.3s ease;
}

.process .step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process .step p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.process .step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
  border-color: rgba(56, 189, 248, 0.3);
}

.process .step:hover i {
  background: linear-gradient(135deg, var(--accent-color), rgba(56, 189, 248, 0.7));
  color: var(--contrast-color);
}

.process .step:hover .num { color: rgba(56, 189, 248, 0.22); }

.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.28), transparent 60%);
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta .cta-center .kicker {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 24px;
  background: rgba(56, 189, 248, 0.22);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta .cta-center h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta .cta-center p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta .cta-center .note {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(174, 185, 204, 0.8);
}

.contact .quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 32px;
}

.contact .quick a,
.contact .quick span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
}

.contact .quick a i,
.contact .quick span i { color: var(--accent-color); font-size: 18px; }

.contact .quick a:hover { color: var(--accent-color); }

.contact .php-email-form {
  padding: 40px;
  border-radius: 20px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.contact .php-email-form .form-control {
  height: 52px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(174, 185, 204, 0.18);
  background: var(--background-color);
  color: var(--default-color);
  font-size: 16px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact .php-email-form .form-control::placeholder { color: rgba(174, 185, 204, 0.5); }

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.contact .php-email-form textarea.form-control {
  height: auto;
  resize: vertical;
}

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 60px 0 30px;
  position: relative;
}

.footer .footer-top { padding-bottom: 40px; }

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
}

.footer .footer-about .logo .mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #f06cae));
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 22px;
}

.footer .footer-about .logo .header-logo-icon,
.footer .footer-about .logo .mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-right: 10px;
}

.footer .footer-about .logo .header-logo-icon {
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
}

.footer .footer-about .logo .sitename {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}

.footer .social-links { gap: 10px; }

.footer .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(174, 185, 204, 0.1);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li { padding: 6px 0; }

.footer .footer-links ul li a {
  color: var(--default-color);
  transition: all 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer .footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer .footer-contact p {
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer .copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(174, 185, 204, 0.12);
}

.footer .copyright p { margin-bottom: 4px; }

.footer .copyright .sitename { color: var(--accent-color); }

.footer .copyright .credits {
  font-size: 13px;
  color: rgba(174, 185, 204, 0.7);
}

.footer .copyright .credits a { color: var(--accent-color); font-weight: 500; }

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(174, 185, 204, 0.09);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: rgba(174, 185, 204, 0.05);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li { padding-left: 10px; }

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(174, 185, 204, 0.7);
}

.service-details .sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-details .sidebar .services-list,
.service-details .sidebar .help-card,
.portfolio-details .meta-card {
  padding: 28px;
  border-radius: 18px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.service-details .sidebar .services-list h4,
.portfolio-details .meta-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-details .sidebar .services-list ul { list-style: none; padding: 0; margin: 0; }

.service-details .sidebar .services-list li { margin-bottom: 8px; }

.service-details .sidebar .services-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--default-color);
  font-weight: 500;
  font-size: 15px;
}

.service-details .sidebar .services-list li a:hover {
  background: rgba(56, 189, 248, 0.08);
  color: var(--accent-color);
}

.service-details .sidebar .services-list li.active a {
  background: linear-gradient(135deg, var(--accent-color), rgba(56, 189, 248, 0.7));
  color: var(--contrast-color);
}

.service-details .sidebar .help-card { text-align: center; }

.service-details .sidebar .help-card i {
  font-size: 32px;
  color: var(--accent-color);
}

.service-details .sidebar .help-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 8px;
}

.service-details .sidebar .help-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-details .detail .hero-img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.service-details .detail h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-details .detail h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 36px 0 16px;
}

.service-details .detail .lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.service-details .detail p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-details .detail .includes .inc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.08);
  font-weight: 500;
  font-size: 15px;
}

.service-details .detail .includes .inc i { color: var(--accent-color); }

.service-details .detail .steps { display: flex; flex-direction: column; gap: 16px; }

.service-details .detail .steps .step {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.08);
}

.service-details .detail .steps .step .n {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: rgba(56, 189, 248, 0.45);
  line-height: 1;
}

.service-details .detail .steps .step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-details .detail .steps .step p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.portfolio-details .gallery {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.portfolio-details .gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-details .gallery .swiper-pagination {
  --swiper-pagination-color: var(--contrast-color);
  --swiper-pagination-bullet-inactive-color: var(--contrast-color);
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  bottom: 16px;
}

.portfolio-details .meta-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.portfolio-details .meta-card ul li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(174, 185, 204, 0.08);
}

.portfolio-details .meta-card ul li:last-child { border-bottom: none; }

.portfolio-details .meta-card ul li .lbl {
  color: rgba(174, 185, 204, 0.75);
  font-size: 15px;
}

.portfolio-details .meta-card ul li .val {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
  text-align: right;
}

.portfolio-details .writeup { margin-top: 16px; }

.portfolio-details .writeup h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.portfolio-details .writeup .lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.portfolio-details .writeup p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.portfolio-details .writeup .highlights { margin-top: 16px; }

.portfolio-details .writeup .highlights .hl {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.08);
}

.portfolio-details .writeup .highlights .hl i {
  font-size: 24px;
  color: var(--accent-color);
}

.portfolio-details .writeup .highlights .hl span { font-size: 15px; }

.feature-panel {
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(25, 33, 52, 0.9);
  border: 1px solid rgba(174, 185, 204, 0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.feature-panel h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.feature-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--default-color);
  line-height: 1.6;
}

.feature-panel li i {
  color: var(--accent-color);
  margin-top: 3px;
}

.product-grid .product-card {
  overflow: hidden;
  height: 100%;
  border-radius: 20px;
  background: var(--surface-color);
  border: 1px solid rgba(174, 185, 204, 0.08);
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.1);
}

.product-grid .product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.product-grid .product-content {
  padding: 22px 20px 24px;
}

.product-grid .tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-grid .product-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.3;
}

.product-grid .product-card p {
  margin: 0;
  line-height: 1.7;
}

.store-panel {
  padding: 32px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(25,33,52,0.96), rgba(10,16,32,0.96));
  border: 1px solid rgba(56, 189, 248, 0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.09);
}

.store-panel .kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.store-panel h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 14px;
  line-height: 1.2;
}

.store-panel p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.store-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.store-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--default-color);
}

.store-features li i {
  color: var(--accent-color);
}

.q-card .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), rgba(56,189,248,0.5));
}

@media (max-width: 1199px) {
  .mobile-nav-active { overflow: hidden; }
  .navmenu { position: relative; }
  .navmenu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(88vw, 380px);
    max-height: none;
    padding: 86px 22px 28px;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, visibility 0.42s;
    z-index: 9999;
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.28);
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 10000;
    width: 44px;
    height: 44px;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .mobile-nav-active .navmenu > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    margin: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 12px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-bottom: 1px solid rgba(174, 185, 204, 0.1);
  }
}

@media (max-width: 767px) {
  [data-aos-delay] { transition-delay: 0 !important; }

  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 34px; }
  .hero .actions .btn-main,
  .hero .actions .btn-line {
    width: 100%;
    justify-content: center;
  }

  .cta .cta-center h2 { font-size: 30px; }
  .cta .cta-center .btn-main { width: 100%; justify-content: center; }

  .contact .php-email-form { padding: 28px; }
}

@media (max-width: 576px) {
  .services .service-rows .row-item { gap: 16px; }
  .services .service-rows .row-item .n { font-size: 22px; min-width: 40px; }
  .services .service-rows .row-item .body h3 { font-size: 20px; }
}

@media (max-width: 992px) {
  .service-details .sidebar { position: static; }
}
