/* KT12 Custom Frontend CSS
Paste site-wide frontend CSS here from Admin > Custom CSS.
*/
h1 {
  font-size: clamp(42px, 5vw, 84px) !important;
}
h2 {
  font-size: clamp(42px, 5vw, 84px) !important;
}
.seo-intro-v2 {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(19, 170, 229, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}
.logo {
  overflow: visible;
}
.logo img {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
}
.logo:hover img {
  transform: scale(1.12) rotate(-1deg);
}
.seo-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.seo-intro-copy h2 {
  max-width: 760px;
}
.seo-accordion {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}
.seo-accordion details {
  border: 1px solid rgba(16, 43, 58, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(16, 43, 58, 0.07);
  overflow: hidden;
}
.seo-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 950;
  font-size: 18px;
  color: #102b3a;
}
.seo-accordion summary::-webkit-details-marker {
  display: none;
}
.seo-accordion summary:after {
  content: "+";
  float: right;
  color: #13aae5;
  font-size: 24px;
  line-height: 1;
}
.seo-accordion details[open] summary:after {
  content: "\2212";
}
.seo-accordion p {
  margin: 0;
  padding: 0 26px 24px;
  color: #5e7180;
  font-size: 18px;
  line-height: 1.65;
}
.seo-browser-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.sass-browser {
  position: relative;
  width: min(720px, 100%);
  border-radius: 34px;
  background: #071923;
  box-shadow: 0 35px 100px rgba(16, 43, 58, 0.24);
  overflow: hidden;
  transform: rotate(-2deg);
  animation: sassFloat 6s ease-in-out infinite;
}
.sass-browser-top {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sass-browser-top span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #13aae5;
}
.sass-browser-top span:nth-child(2) {
  background: #7b5cff;
}
.sass-browser-top span:nth-child(3) {
  background: #a9ef3b;
}
.sass-browser-top strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sass-browser-body {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 220px;
  gap: 24px;
  padding: 34px;
  min-height: 360px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(19, 170, 229, 0.25),
      transparent 35%
    ),
    linear-gradient(135deg, #071923, #102b3a);
}
.sass-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
}
.sass-sidebar i {
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}
.sass-sidebar i:first-child {
  background: #13aae5;
  box-shadow: 0 0 30px rgba(19, 170, 229, 0.45);
}
.sass-code {
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 17px;
  line-height: 1.75;
}
.sass-code p {
  margin: 0;
  opacity: 0.94;
}
.sass-code b {
  color: #13aae5;
}
.sass-code span {
  color: #a9ef3b;
}
.sass-preview {
  align-self: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 20px;
  backdrop-filter: blur(16px);
}
.sass-card {
  height: 120px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(19, 170, 229, 0.9), rgba(123, 92, 255, 0.9)),
    radial-gradient(circle at 80% 10%, #fff, transparent 32%);
  box-shadow: 0 18px 45px rgba(19, 170, 229, 0.28);
}
.sass-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.sass-lines i {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.sass-lines i:nth-child(2) {
  width: 75%;
}
.sass-lines i:nth-child(3) {
  width: 55%;
}
.sass-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: #13aae5;
  filter: blur(45px);
  opacity: 0.35;
  animation: sassGlow 4s ease-in-out infinite;
}
@keyframes sassFloat {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-18px);
  }
}
@keyframes sassGlow {
  50% {
    transform: scale(1.2);
    opacity: 0.55;
  }
}
@media (max-width: 950px) {
  .seo-intro-grid {
    grid-template-columns: 1fr;
  }
  .sass-browser {
    transform: none;
  }
  .sass-browser-body {
    grid-template-columns: 52px 1fr;
  }
  .sass-preview {
    grid-column: 1 / -1;
  }
}
@media (max-width: 650px) {
  .seo-browser-art {
    min-height: auto;
  }
  .sass-browser-body {
    padding: 24px;
    grid-template-columns: 1fr;
  }
  .sass-sidebar {
    display: none;
  }
  .sass-code {
    font-size: 14px;
  }
}
.cbm-featured-work {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(19, 170, 229, 0.16),
      transparent 32%
    ),
    linear-gradient(180deg, #fff 0%, #f4fbff 100%);
}
.cbm-showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  background: #071923;
  border-radius: 44px;
  padding: clamp(34px, 5vw, 72px);
  box-shadow: 0 34px 100px rgba(16, 43, 58, 0.2);
  position: relative;
  overflow: hidden;
}
.cbm-showcase:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: rgba(19, 170, 229, 0.28);
  filter: blur(30px);
}
.cbm-copy {
  position: relative;
  z-index: 2;
  color: #fff;
}
.cbm-pill {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(19, 170, 229, 0.14);
  border: 1px solid rgba(19, 170, 229, 0.35);
  color: #7fdcff;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 20px;
}
.cbm-copy h3 {
  font-size: clamp(38px, 4vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0 0 22px;
}
.cbm-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.6;
  max-width: 620px;
}
.cbm-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}
.cbm-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 850;
  color: rgba(255, 255, 255, 0.9);
}
.cbm-btn {
  background: #13aae5;
}
.cbm-browser-wrap {
  position: relative;
  z-index: 2;
  perspective: 1200px;
}
.cbm-browser {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: cbmFloat 6s ease-in-out infinite;
}
.cbm-browser-top {
  height: 58px;
  background: #eef7fb;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(16, 43, 58, 0.08);
}
.cbm-browser-top i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #13aae5;
}
.cbm-browser-top i:nth-child(2) {
  background: #7b5cff;
}
.cbm-browser-top i:nth-child(3) {
  background: #a9ef3b;
}
.cbm-browser-top strong {
  margin-left: auto;
  color: #5e7180;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cbm-browser-screen {
  padding: 18px;
  background: linear-gradient(135deg, #f8fcff, #eef7fb);
}
.cbm-browser-screen img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(16, 43, 58, 0.16);
}
@keyframes cbmFloat {
  0%,
  100% {
    transform: rotateY(-8deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-4deg) rotateX(2deg) translateY(-16px);
  }
}
@media (max-width: 950px) {
  .cbm-showcase {
    grid-template-columns: 1fr;
  }
  .cbm-browser {
    transform: none;
    animation: none;
  }
}
@media (max-width: 650px) {
  .cbm-showcase {
    border-radius: 30px;
    padding: 28px;
  }
  .cbm-copy h3 {
    font-size: 38px;
  }
  .cbm-copy p {
    font-size: 18px;
  }
  .cbm-browser-top strong {
    display: none;
  }
}
.kt12-services-pro {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(19, 170, 229, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 40%,
      rgba(123, 92, 255, 0.14),
      transparent 34%
    ),
    linear-gradient(180deg, #fff, #f4fbff);
}
.kt12-services-head {
  max-width: 1050px;
  margin-bottom: 54px;
}
.kt12-services-head h2 {
  font-size: clamp(44px, 6vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  margin: 14px 0 22px;
}
.kt12-services-head p {
  font-size: 21px;
  line-height: 1.6;
  color: #5e7180;
  max-width: 880px;
}
.kt12-service-orbit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.kt12-service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 43, 58, 0.1);
  box-shadow: 0 22px 60px rgba(16, 43, 58, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.kt12-service-card:before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #13aae5, #7b5cff);
  opacity: 0.12;
  transition: 0.45s ease;
}
.kt12-service-card:after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 2px;
  background: linear-gradient(90deg, #13aae5, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}
.kt12-service-card:hover {
  transform: translateY(-14px) rotate(0.5deg);
  box-shadow: 0 34px 100px rgba(16, 43, 58, 0.17);
  border-color: rgba(19, 170, 229, 0.28);
}
.kt12-service-card:hover:before {
  opacity: 0.24;
  transform: scale(1.7);
}
.kt12-service-card:hover:after {
  transform: scaleX(1);
}
.kt12-service-card span {
  display: inline-flex;
  color: #13aae5;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.kt12-service-card i {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #071923;
  color: #fff;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(16, 43, 58, 0.18);
  transition: 0.35s ease;
}
.kt12-service-card:hover i {
  background: #13aae5;
  transform: rotate(-8deg) scale(1.08);
}
.kt12-service-card h3 {
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  color: #102b3a;
}
.kt12-service-card p {
  color: #5e7180;
  font-size: 18px;
  line-height: 1.58;
  margin: 0;
}
@media (max-width: 1200px) {
  .kt12-service-orbit {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .kt12-service-orbit {
    grid-template-columns: 1fr;
  }
  .kt12-service-card {
    min-height: auto;
  }
}
.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.services-hero-art {
  position: relative;
  min-height: 430px;
}
.service-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #13aae5,
    rgba(19, 170, 229, 0.08) 62%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  filter: blur(2px);
  animation: servicePulse 4s ease-in-out infinite;
}
.service-device {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 300px;
  height: 230px;
  border-radius: 30px;
  background: #071923;
  box-shadow: 0 34px 100px rgba(16, 43, 58, 0.22);
  padding: 26px;
  animation: serviceFloat 6s ease-in-out infinite;
}
.service-device div {
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 18px;
}
.service-device div:first-child {
  width: 70%;
  background: #13aae5;
}
.service-device div:nth-child(2) {
  width: 90%;
}
.service-device div:nth-child(3) {
  width: 55%;
}
.service-panel {
  position: absolute;
  padding: 16px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 43, 58, 0.1);
  box-shadow: 0 18px 50px rgba(16, 43, 58, 0.12);
  font-weight: 950;
  color: #102b3a;
  animation: serviceFloat 5s ease-in-out infinite;
}
.panel-one {
  left: 5%;
  top: 22%;
}
.panel-two {
  left: 20%;
  bottom: 18%;
  animation-delay: -1s;
}
.panel-three {
  right: 0;
  bottom: 28%;
  animation-delay: -2s;
}
@keyframes serviceFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes servicePulse {
  50% {
    transform: translate(-50%, -50%) scale(1.14);
    opacity: 0.72;
  }
}
@media (max-width: 900px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
  }
  .services-hero-art {
    min-height: 320px;
  }
}
@media (max-width: 600px) {
  .services-hero-art {
    display: none;
  }
}
.kt12-footer-pro {
  position: relative;
  overflow: hidden;
  background: #071923;
  color: #fff;
  padding: 90px 44px 32px;
}
.kt12-footer-pro .wrap {
  position: relative;
  z-index: 2;
}
.footer-orb {
  position: absolute;
  right: -220px;
  top: -260px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(19, 170, 229, 0.32),
    transparent 68%
  );
  pointer-events: none;
}
.footer-cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #7fdcff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 950;
}
.footer-cta-row h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.footer-cta-row p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.6;
  margin: 24px 0 0;
}
.footer-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 18px 28px;
  border-radius: 999px;
  background: #13aae5;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 22px 55px rgba(19, 170, 229, 0.35);
  transition: 0.3s ease;
}
.footer-main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 75px rgba(19, 170, 229, 0.48);
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 46px;
  padding: 54px 0;
}
.footer-brand strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.footer-brand p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-links span,
.footer-contact span {
  color: #7fdcff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
  margin-bottom: 8px;
}
.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.25s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: none !important;
}
.footer-socials a:hover {
  background: #13aae5;
  border-color: #13aae5;
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 45px rgba(19, 170, 229, 0.35);
}
.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
@media (max-width: 900px) {
  .footer-cta-row,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-btn {
    width: max-content;
  }
}
@media (max-width: 650px) {
  .kt12-footer-pro {
    padding: 70px 22px 28px;
  }
  .footer-cta-row h2 {
    font-size: 42px;
  }
  .footer-cta-row p {
    font-size: 18px;
  }
}
.contact-pro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(19, 170, 229, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(109, 93, 252, 0.08),
      transparent 40%
    ),
    linear-gradient(180deg, #f7fcff, #ffffff);
}
.contact-pro-header {
  max-width: 950px;
  margin: 0 auto 70px;
  text-align: center;
}
.contact-pro-header h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 18px 0;
}
.contact-pro-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}
.contact-pro-info {
  position: relative;
  background: #071923;
  color: #fff;
  border-radius: 36px;
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(16, 43, 58, 0.18);
}
.contact-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(19, 170, 229, 0.22);
  filter: blur(35px);
}
.contact-stat {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.contact-stat strong {
  display: block;
  font-size: 58px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}
.contact-stat span {
  color: rgba(255, 255, 255, 0.7);
}
.contact-details {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
.contact-details h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-details p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-links a,
.contact-links span {
  color: #fff;
  font-weight: 700;
}
.contact-pro-form {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 43, 58, 0.08);
  border-radius: 36px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(16, 43, 58, 0.08);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-pro-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 900;
  color: #102b3a;
}
.contact-pro-form input,
.contact-pro-form select,
.contact-pro-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(16, 43, 58, 0.08);
  border-radius: 18px;
  padding: 18px;
  font: inherit;
  background: #fff;
  color: #102b3a;
  transition: 0.25s;
}
.contact-pro-form input:focus,
.contact-pro-form select:focus,
.contact-pro-form textarea:focus {
  outline: none;
  border-color: #13aae5;
  box-shadow: 0 0 0 4px rgba(19, 170, 229, 0.12);
}
.contact-pro-form textarea {
  min-height: 180px;
  resize: vertical;
}
.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 25px 0;
  padding: 25px;
  background: #f7fcff;
  border-radius: 24px;
  border: 1px solid rgba(16, 43, 58, 0.06);
}
.checkbox-heading {
  grid-column: 1/-1;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 950;
  color: #13aae5;
  margin-bottom: 10px;
}
.service-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 700;
}
.service-checkboxes input {
  width: 18px;
  height: 18px;
  margin: 0;
}
.project-submit-btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 22px;
  background: linear-gradient(135deg, #13aae5, #6d5dfc);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 25px 60px rgba(19, 170, 229, 0.3);
}
.project-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(19, 170, 229, 0.42);
}
@media (max-width: 1000px) {
  .contact-pro-layout {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .contact-pro-form,
  .contact-pro-info {
    padding: 28px;
  }
  .service-checkboxes {
    grid-template-columns: 1fr;
  }
  .contact-pro-header h2 {
    font-size: 48px;
  }
}
/* Premium Select Styling */
.kt12-contact-form select,
.contact-pro-form select {
  width: 100%;
  height: 68px;
  padding: 0 22px;
  border: 2px solid rgba(16, 43, 58, 0.08);
  border-radius: 18px;
  background: #fff;
  font-size: 22px;
  font-weight: 700;
  color: #102b3a;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  background-image:
    linear-gradient(45deg, transparent 50%, #102b3a 50%),
    linear-gradient(135deg, #102b3a 50%, transparent 50%);
  background-position:
    calc(100% - 28px) calc(50% - 4px),
    calc(100% - 20px) calc(50% - 4px);
  background-size: 8px 8px;
  background-repeat: no-repeat;
}
.kt12-contact-form select:hover,
.contact-pro-form select:hover {
  border-color: rgba(34, 195, 255, 0.4);
  box-shadow: 0 10px 30px rgba(34, 195, 255, 0.08);
}
.kt12-contact-form select:focus,
.contact-pro-form select:focus {
  outline: none;
  border-color: #22c3ff;
  box-shadow:
    0 0 0 4px rgba(34, 195, 255, 0.15),
    0 15px 40px rgba(34, 195, 255, 0.15);
}
.kt12-project-form select,
.contact-pro-form select {
  width: 100%;
  min-height: 78px;
  padding: 0 28px;
  border: 2px solid rgba(16, 43, 58, 0.08);
  border-radius: 22px;
  background: #fff;
  font-size: 28px;
  font-weight: 800;
  color: #102b3a;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  background-image:
    linear-gradient(45deg, transparent 50%, #102b3a 50%),
    linear-gradient(135deg, #102b3a 50%, transparent 50%);
  background-position:
    calc(100% - 34px) calc(50% - 4px),
    calc(100% - 24px) calc(50% - 4px);
  background-size: 10px 10px;
  background-repeat: no-repeat;
  box-shadow: 0 12px 30px rgba(16, 43, 58, 0.05);
}
@media (max-width: 768px) {
  .kt12-project-form select,
  .contact-pro-form select {
    min-height: 68px;
    font-size: 22px;
  }
}
.menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  .nav .links,
  .nav > .btn {
    display: none !important;
  }
  .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .menu-toggle {
    display: flex !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(16, 43, 58, 0.08) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 18px 45px rgba(16, 43, 58, 0.12) !important;
    backdrop-filter: blur(16px);
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 6px !important;
    z-index: 999999 !important;
    cursor: pointer;
    transition: 0.35s ease;
  }
  .menu-toggle span {
    width: 25px !important;
    height: 3px !important;
    border-radius: 20px !important;
    background: #102b3a !important;
    transition: 0.35s ease;
  }
  .menu-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(19, 170, 229, 0.2) !important;
  }
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  body.mobile-lock {
    overflow: hidden;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999998;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(7, 25, 35, 0.52);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: 0.45s ease;
  }
  .mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 100vw);
    border-radius: 0;
    background:
      radial-gradient(
        circle at 85% 12%,
        rgba(82, 173, 227, 0.28),
        transparent 34%
      ),
      radial-gradient(
        circle at 12% 88%,
        rgba(176, 203, 31, 0.18),
        transparent 36%
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98),
        rgba(244, 251, 255, 0.96)
      );
    transform: translateX(115%);
  }
  .mobile-menu.open {
    pointer-events: auto;
    visibility: visible;
  }
  .mobile-menu.open .mobile-menu-bg {
    opacity: 1;
  }
  .mobile-menu.open .mobile-menu-inner {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  .mobile-menu-inner:before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -110px;
    top: 120px;
    border-radius: 50%;
    background: #13aae5;
    filter: blur(55px);
    opacity: 0.18;
    pointer-events: none;
  }
  .mobile-menu-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 42px;
  }
  .mobile-menu-top img {
    max-width: 150px;
    height: auto;
  }
  .menu-close {
    border: 0;
    border-radius: 999px;
    padding: 14px 20px;
    background: #13aae5;
    color: #fff;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(19, 170, 229, 0.3);
  }
  .mobile-links {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
  }
  .mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-radius: 22px;
    color: #102b3a;
    text-decoration: none;
    font-size: 25px !important;
    line-height: 1;
    font-weight: 950;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(16, 43, 58, 0.08);
    box-shadow: 0 14px 34px rgba(16, 43, 58, 0.06);
    transform: translateX(30px);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-links a:after {
    content: "\2192";
    color: #13aae5;
    transform: translateX(-6px);
    opacity: 0;
    transition: 0.3s ease;
  }
  .mobile-links a:hover {
    background: #071923;
    color: #fff;
    transform: translateX(0) translateY(-3px) !important;
  }
  .mobile-links a:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-menu.open .mobile-links a {
    opacity: 1;
    transform: translateX(0);
  }
  .menu-preview {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    padding: 24px;
    border-radius: 28px;
    background: #071923;
    color: #fff;
    box-shadow: 0 24px 70px rgba(7, 25, 35, 0.18);
  }
  .menu-preview span {
    display: block;
    color: #7fdcff;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }
  .menu-preview strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .menu-preview p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
    margin: 12px 0 0;
  }
  .mobile-menu-contact {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    display: grid;
    gap: 14px;
  }
  .mobile-menu-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-radius: 999px;
    background: linear-gradient(135deg, #13aae5, #1d73ff);
    color: #fff;
    font-size: 20px;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(19, 170, 229, 0.28);
  }
  .mobile-menu-socials {
    display: flex;
    gap: 12px;
  }
  .mobile-menu-socials a {
    flex: 1;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff;
    color: #102b3a;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(16, 43, 58, 0.08);
  }
  .mobile-menu-socials a:hover {
    background: #071923;
    color: #fff;
  }
}
@media (max-width: 520px) {
  .mobile-menu-inner {
    width: 100%;
    border-radius: 0;
    inset: 0;
  }
}
.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 26px;
  background: #fff;
  color: #061f46;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(6, 31, 70, 0.06);
  border: 1px solid rgba(6, 31, 70, 0.06);
  opacity: 0;
  transform: translateX(34px);
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.kt12-showcase-section {
  overflow: hidden;
}
.kt12-work-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.kt12-case-card {
  grid-column: span 4;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6, 31, 70, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.kt12-case-card.large {
  grid-column: span 6;
}
.kt12-case-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.kt12-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(6, 31, 70, 0.2);
}
.kt12-browser {
  margin: 18px;
  border-radius: 20px;
  overflow: hidden;
  background: #eef4f9;
  box-shadow: inset 0 0 0 1px rgba(6, 31, 70, 0.08);
}
.browser-bar {
  height: 34px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 14px;
  background: #f6f8fb;
}
.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8dee8;
}
.kt12-browser img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
}
.kt12-case-card.large .kt12-browser img {
  height: 340px;
}
.case-content {
  padding: 6px 26px 30px;
}
.case-content span {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00aeea;
}
.case-content h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  color: #061f46;
}
.case-content p {
  margin: 0;
  color: #607086;
  line-height: 1.65;
}
.kt12-case-card.dark-card {
  background: #061f46;
}
.kt12-case-card.dark-card .case-content h3,
.kt12-case-card.dark-card .case-content p {
  color: #fff;
}
.kt12-case-card.restaurant {
  background: #090909;
}
.kt12-case-card.restaurant .case-content h3,
.kt12-case-card.restaurant .case-content p {
  color: #fff;
}
.kt12-case-card.colourful {
  background: linear-gradient(135deg, #fff, #fff7f2);
}
@media (max-width: 980px) {
  .kt12-work-showcase {
    grid-template-columns: 1fr;
  }
  .kt12-case-card,
  .kt12-case-card.large {
    grid-column: span 1;
  }
  .kt12-browser img,
  .kt12-case-card.large .kt12-browser img {
    height: 240px;
  }
}
@media (max-width: 560px) {
  .kt12-browser {
    margin: 12px;
  }
  .case-content {
    padding: 8px 18px 24px;
  }
  .kt12-browser img,
  .kt12-case-card.large .kt12-browser img {
    height: 210px;
  }
}
.services-hero-neo {
  position: relative;
  overflow: hidden;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 70px;
  align-items: center;
}
.services-hero-copy {
  position: relative;
  z-index: 3;
}
.services-neo-art {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}
.neo-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.75;
  pointer-events: none;
}
.neo-glow-one {
  width: 330px;
  height: 330px;
  right: 30px;
  top: 40px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 252, 0.45),
    rgba(0, 199, 252, 0) 68%
  );
  animation: neoFloat 7s ease-in-out infinite;
}
.neo-glow-two {
  width: 300px;
  height: 300px;
  right: 210px;
  bottom: 40px;
  background: radial-gradient(
    circle,
    rgba(176, 203, 31, 0.32),
    rgba(176, 203, 31, 0) 70%
  );
  animation: neoFloat 8s ease-in-out infinite reverse;
}
.neo-orbit-ring {
  position: absolute;
  inset: 70px 20px 20px 45px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(-18deg);
}
.ring-one {
  animation: neoOrbitSpin 18s linear infinite;
}
.ring-two {
  inset: 115px 72px 80px 88px;
  border-color: rgba(0, 199, 252, 0.28);
  animation: neoOrbitSpin 14s linear infinite reverse;
}
.neo-browser-card {
  position: absolute;
  top: 68px;
  right: 20px;
  width: 470px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transform: rotateY(-16deg) rotateX(8deg) rotateZ(-2deg);
  animation: neoCardFloat 6.5s ease-in-out infinite;
}
.neo-browser-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.16);
}
.neo-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
.neo-browser-top strong {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.neo-browser-body {
  display: grid;
  grid-template-columns: 62px 1fr 120px;
  gap: 18px;
  padding: 22px;
}
.neo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.neo-sidebar i {
  display: block;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}
.neo-code {
  padding: 18px;
  border-radius: 20px;
  background: rgba(3, 18, 42, 0.74);
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.neo-code p {
  margin: 0;
}
.neo-code span {
  color: #00c7fc;
}
.neo-code b {
  color: #b0cb1f;
}
.neo-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.neo-preview div {
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 199, 252, 0.38),
    rgba(255, 255, 255, 0.12)
  );
}
.neo-preview div:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(176, 203, 31, 0.35),
    rgba(255, 255, 255, 0.1)
  );
}
.neo-preview div:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.08)
  );
}
.neo-centre-device {
  position: absolute;
  right: 190px;
  bottom: 52px;
  width: 190px;
  height: 230px;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  animation: neoDeviceFloat 5.8s ease-in-out infinite;
}
.device-screen {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #061f46, #020a16);
  padding: 22px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.device-screen span {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00c7fc, #b0cb1f);
  margin-bottom: 20px;
  animation: neoPulse 2.6s ease-in-out infinite;
}
.device-screen strong {
  display: block;
  font-size: 28px;
  margin-bottom: 22px;
}
.device-screen em {
  display: block;
  height: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 12px;
}
.device-screen em:nth-child(4) {
  width: 80%;
}
.device-screen em:nth-child(5) {
  width: 55%;
}
.neo-service-pill {
  position: absolute;
  z-index: 5;
  padding: 13px 18px;
  border-radius: 999px;
  color: #061f46;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: neoPillFloat 5s ease-in-out infinite;
}
.pill-design {
  top: 38px;
  right: 285px;
}
.pill-code {
  top: 238px;
  right: -4px;
  animation-delay: 0.6s;
}
.pill-seo {
  bottom: 114px;
  right: 405px;
  animation-delay: 1.1s;
}
.pill-shop {
  bottom: 18px;
  right: 40px;
  animation-delay: 1.6s;
}
@keyframes neoCardFloat {
  0%,
  100% {
    transform: rotateY(-16deg) rotateX(8deg) rotateZ(-2deg) translateY(0);
  }
  50% {
    transform: rotateY(-10deg) rotateX(5deg) rotateZ(1deg) translateY(-18px);
  }
}
@keyframes neoDeviceFloat {
  0%,
  100% {
    transform: translateY(0) rotateZ(5deg);
  }
  50% {
    transform: translateY(-22px) rotateZ(-2deg);
  }
}
@keyframes neoPillFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes neoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -20px, 0) scale(1.08);
  }
}
@keyframes neoOrbitSpin {
  from {
    transform: rotateX(62deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(62deg) rotateZ(360deg);
  }
}
@keyframes neoPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 199, 252, 0.35);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(0, 199, 252, 0);
  }
}
@media (max-width: 1080px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
  }
  .services-neo-art {
    min-height: 500px;
  }
  .neo-browser-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotateY(-10deg) rotateX(6deg);
  }
}
@media (max-width: 620px) {
  .services-neo-art {
    min-height: 420px;
  }
  .neo-browser-card {
    width: 92%;
    top: 45px;
  }
  .neo-browser-body {
    grid-template-columns: 1fr;
  }
  .neo-sidebar,
  .neo-preview {
    display: none;
  }
  .neo-centre-device {
    width: 145px;
    height: 180px;
    right: 24px;
    bottom: 18px;
  }
  .neo-service-pill {
    font-size: 11px;
    padding: 10px 13px;
  }
  .pill-design {
    top: 20px;
    right: auto;
    left: 18px;
  }
  .pill-code {
    top: 270px;
    right: 14px;
  }
  .pill-seo {
    bottom: 70px;
    left: 16px;
    right: auto;
  }
  .pill-shop {
    display: none;
  }
}
.kt12-process-hero {
  overflow: hidden;
}
.process-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 70px;
  align-items: center;
}
.process-hero-machine {
  position: relative;
  min-height: 520px;
}
.process-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.22),
    inset 0 0 40px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: processCoreFloat 5s ease-in-out infinite;
  z-index: 4;
}
.process-core span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00c7fc, #b0cb1f);
  margin-bottom: 14px;
  box-shadow: 0 0 0 0 rgba(0, 199, 252, 0.35);
  animation: processPulse 2.6s ease-in-out infinite;
}
.process-core strong {
  color: #061f46;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}
.process-core em {
  margin-top: 6px;
  font-style: normal;
  color: rgba(6, 31, 70, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.process-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
}
.ring-a {
  width: 310px;
  height: 310px;
  animation: processSpin 18s linear infinite;
}
.ring-b {
  width: 410px;
  height: 410px;
  border-color: rgba(0, 199, 252, 0.28);
  animation: processSpin 26s linear infinite reverse;
}
.ring-c {
  width: 500px;
  height: 500px;
  border-color: rgba(176, 203, 31, 0.22);
  animation: processSpinTilt 24s linear infinite;
}
.process-node {
  position: absolute;
  z-index: 5;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #061f46;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  animation: processNodeFloat 4.8s ease-in-out infinite;
}
.node-one {
  top: 70px;
  left: 64px;
}
.node-two {
  top: 120px;
  right: 22px;
  animation-delay: 0.7s;
}
.node-three {
  bottom: 108px;
  right: 48px;
  animation-delay: 1.3s;
}
.node-four {
  bottom: 72px;
  left: 36px;
  animation-delay: 1.9s;
}
.process-line {
  position: absolute;
  height: 2px;
  width: 160px;
  background: linear-gradient(
    90deg,
    rgba(0, 199, 252, 0),
    rgba(0, 199, 252, 0.75),
    rgba(176, 203, 31, 0)
  );
  filter: drop-shadow(0 0 12px rgba(0, 199, 252, 0.5));
  animation: processLineGlow 3s ease-in-out infinite;
}
.line-one {
  top: 174px;
  left: 146px;
  transform: rotate(24deg);
}
.line-two {
  top: 314px;
  right: 90px;
  transform: rotate(118deg);
  animation-delay: 0.6s;
}
.line-three {
  bottom: 150px;
  left: 120px;
  transform: rotate(-32deg);
  animation-delay: 1.2s;
}
.process-intro {
  max-width: 820px;
  margin-bottom: 70px;
}
.process-intro h2 {
  margin: 10px 0 16px;
  color: #061f46;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.95;
}
.process-intro p {
  color: #607086;
  font-size: 18px;
  line-height: 1.7;
}
.kt12-process-timeline {
  position: relative;
  display: grid;
  gap: 34px;
}
.kt12-process-timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(0, 199, 252, 0),
    rgba(0, 199, 252, 0.55),
    rgba(176, 203, 31, 0.55),
    rgba(0, 199, 252, 0)
  );
}
.process-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
}
.process-stage:nth-child(even) .stage-card {
  grid-column: 3;
}
.process-stage:nth-child(odd) .stage-card {
  grid-column: 1;
}
.stage-number {
  grid-column: 2;
  justify-self: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: #061f46;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(6, 31, 70, 0.24);
  z-index: 3;
}
.stage-card {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 31, 70, 0.12);
  border: 1px solid rgba(6, 31, 70, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.stage-card:before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -50px;
  top: -50px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 252, 0.22),
    rgba(0, 199, 252, 0) 70%
  );
}
.stage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(6, 31, 70, 0.18);
}
.stage-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #00aeea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stage-card h3 {
  margin: 0 0 12px;
  color: #061f46;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}
.stage-card p {
  margin: 0;
  color: #607086;
  line-height: 1.7;
}
@keyframes processCoreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
}
@keyframes processPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 199, 252, 0.35);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(0, 199, 252, 0);
  }
}
@keyframes processSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes processSpinTilt {
  from {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg);
  }
}
@keyframes processNodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes processLineGlow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 980px) {
  .process-hero-grid {
    grid-template-columns: 1fr;
  }
  .process-hero-machine {
    min-height: 440px;
  }
  .kt12-process-timeline:before {
    left: 38px;
  }
  .process-stage {
    grid-template-columns: 76px 1fr;
    gap: 20px;
  }
  .process-stage:nth-child(even) .stage-card,
  .process-stage:nth-child(odd) .stage-card {
    grid-column: 2;
  }
  .stage-number {
    grid-column: 1;
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }
}
@media (max-width: 620px) {
  .process-hero-machine {
    min-height: 360px;
  }
  .process-core {
    width: 150px;
    height: 150px;
  }
  .ring-a {
    width: 230px;
    height: 230px;
  }
  .ring-b {
    width: 300px;
    height: 300px;
  }
  .ring-c,
  .process-line {
    display: none;
  }
  .process-node {
    font-size: 11px;
    padding: 10px 13px;
  }
  .node-one {
    top: 44px;
    left: 12px;
  }
  .node-two {
    top: 80px;
    right: 10px;
  }
  .node-three {
    bottom: 70px;
    right: 12px;
  }
  .node-four {
    bottom: 48px;
    left: 14px;
  }
  .process-stage {
    grid-template-columns: 1fr;
  }
  .stage-number {
    grid-column: 1;
    justify-self: start;
    margin-bottom: -10px;
  }
  .process-stage:nth-child(even) .stage-card,
  .process-stage:nth-child(odd) .stage-card {
    grid-column: 1;
  }
  .kt12-process-timeline:before {
    display: none;
  }
}
.kt12-account-hero {
  overflow: hidden;
}
.account-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 560px);
  gap: 70px;
  align-items: center;
}
.account-hero-copy {
  position: relative;
  z-index: 3;
}
.account-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.account-btn:hover {
  transform: translateY(-4px);
}
.account-btn.primary {
  background: linear-gradient(135deg, #00c7fc, #1d73ff);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 199, 252, 0.28);
}
.account-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.account-btn.secondary.dark {
  background: rgba(6, 31, 70, 0.78);
  color: #fff;
  border: 1px solid rgba(6, 31, 70, 0.78);
}
.account-dashboard-art {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}
.account-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.75;
}
.glow-one {
  width: 340px;
  height: 340px;
  top: 50px;
  right: 30px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 252, 0.45),
    rgba(0, 199, 252, 0) 70%
  );
  animation: accountFloat 7s ease-in-out infinite;
}
.glow-two {
  width: 280px;
  height: 280px;
  bottom: 40px;
  right: 240px;
  background: radial-gradient(
    circle,
    rgba(176, 203, 31, 0.34),
    rgba(176, 203, 31, 0) 72%
  );
  animation: accountFloat 8s ease-in-out infinite reverse;
}
.account-main-panel {
  position: absolute;
  top: 64px;
  right: 20px;
  width: 470px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  transform: rotateY(-15deg) rotateX(8deg) rotateZ(-2deg);
  animation: accountPanelFloat 6.5s ease-in-out infinite;
}
.account-panel-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.16);
}
.account-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}
.account-panel-top strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.account-panel-body {
  padding: 24px;
}
.account-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(6, 31, 70, 0.78);
  color: #fff;
}
.profile-orb {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00c7fc, #b0cb1f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 28px;
  animation: accountPulse 2.8s ease-in-out infinite;
}
.account-profile strong,
.account-profile span {
  display: block;
}
.account-profile span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}
.account-progress {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.account-progress div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.account-progress span {
  opacity: 0.72;
}
.account-progress strong {
  color: #b0cb1f;
}
.account-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.account-mini-grid div {
  padding: 18px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.account-mini-grid b {
  display: block;
  color: #061f46;
  font-size: 28px;
  line-height: 1;
}
.account-mini-grid span {
  display: block;
  margin-top: 8px;
  color: #607086;
  font-size: 12px;
  font-weight: 800;
}
.floating-login-card {
  position: absolute;
  z-index: 6;
  width: 170px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  color: #061f46;
  animation: accountCardFloat 5s ease-in-out infinite;
}
.floating-login-card span {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #061f46;
  color: #fff;
  font-weight: 900;
}
.floating-login-card strong,
.floating-login-card em {
  display: block;
}
.floating-login-card em {
  margin-top: 4px;
  font-style: normal;
  color: #607086;
  font-size: 13px;
}
.card-webmail {
  top: 28px;
  left: 26px;
}
.card-planner {
  right: 2px;
  bottom: 74px;
  animation-delay: 0.8s;
}
.card-support {
  left: 88px;
  bottom: 42px;
  animation-delay: 1.5s;
}
.kt12-account-section {
  position: relative;
}
.account-access-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 28px;
}
.account-access-card {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(6, 31, 70, 0.08);
  box-shadow: 0 24px 70px rgba(6, 31, 70, 0.12);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.account-access-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(6, 31, 70, 0.18);
}
.account-access-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 199, 252, 0.2),
    rgba(0, 199, 252, 0) 72%
  );
}
.account-access-card.featured {
  background: #061f46;
  color: #fff;
}
.access-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00c7fc, #1d73ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 24px;
}
.account-access-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #00aeea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.account-access-card h2,
.account-access-card h3 {
  margin: 0 0 14px;
  color: #061f46;
  line-height: 1.05;
}
.account-access-card h2 {
  font-size: clamp(30px, 4vw, 54px);
}
.account-access-card h3 {
  font-size: 30px;
}
.account-access-card p {
  margin: 0 0 24px;
  color: #607086;
  line-height: 1.7;
}
.account-access-card.featured h2,
.account-access-card.featured p {
  color: #fff;
}
.account-access-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: #00c7fc;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
@keyframes accountPanelFloat {
  0%,
  100% {
    transform: rotateY(-15deg) rotateX(8deg) rotateZ(-2deg) translateY(0);
  }
  50% {
    transform: rotateY(-9deg) rotateX(5deg) rotateZ(1deg) translateY(-18px);
  }
}
@keyframes accountCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes accountFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -18px, 0) scale(1.08);
  }
}
@keyframes accountPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 199, 252, 0.34);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(0, 199, 252, 0);
  }
}
@media (max-width: 1080px) {
  .account-hero-grid,
  .account-access-grid {
    grid-template-columns: 1fr;
  }
  .account-dashboard-art {
    min-height: 520px;
  }
  .account-main-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotateY(-10deg) rotateX(6deg);
  }
}
@media (max-width: 620px) {
  .account-hero-actions {
    flex-direction: column;
  }
  .account-dashboard-art {
    min-height: 430px;
  }
  .account-main-panel {
    width: 92%;
    top: 40px;
  }
  .account-mini-grid {
    grid-template-columns: 1fr;
  }
  .floating-login-card {
    width: 138px;
    padding: 14px;
  }
  .card-webmail {
    left: 8px;
    top: 18px;
  }
  .card-planner {
    right: 8px;
    bottom: 30px;
  }
  .card-support {
    display: none;
  }
}
.kt12-account-hero {
  overflow: hidden;
}
.account-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 560px);
  gap: 70px;
  align-items: center;
}
.account-hero-copy {
  position: relative;
  z-index: 3;
}
.account-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.account-btn:hover {
  transform: translateY(-4px);
}
.account-btn.primary {
  background: linear-gradient(135deg, #00c7fc, #1d73ff);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 199, 252, 0.28);
}
.account-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.account-dashboard-art {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}
.account-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.75;
}
.glow-one {
  width: 340px;
  height: 340px;
  top: 50px;
  right: 30px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 252, 0.45),
    rgba(0, 199, 252, 0) 70%
  );
  animation: accountFloat 7s ease-in-out infinite;
}
.glow-two {
  width: 280px;
  height: 280px;
  bottom: 40px;
  right: 240px;
  background: radial-gradient(
    circle,
    rgba(176, 203, 31, 0.34),
    rgba(176, 203, 31, 0) 72%
  );
  animation: accountFloat 8s ease-in-out infinite reverse;
}
.account-main-panel {
  position: absolute;
  top: 64px;
  right: 20px;
  width: 470px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  transform: rotateY(-15deg) rotateX(8deg) rotateZ(-2deg);
  animation: accountPanelFloat 6.5s ease-in-out infinite;
}
.account-panel-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.16);
}
.account-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}
.account-panel-top strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.account-panel-body {
  padding: 24px;
}
.account-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(6, 31, 70, 0.78);
  color: #fff;
}
.profile-orb {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00c7fc, #b0cb1f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 28px;
  animation: accountPulse 2.8s ease-in-out infinite;
}
.account-profile strong,
.account-profile span {
  display: block;
}
.account-profile span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}
.account-progress {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.account-progress div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.account-progress span {
  opacity: 0.72;
}
.account-progress strong {
  color: #b0cb1f;
}
.account-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.account-mini-grid div {
  padding: 18px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.account-mini-grid b {
  display: block;
  color: #061f46;
  font-size: 28px;
  line-height: 1;
}
.account-mini-grid span {
  display: block;
  margin-top: 8px;
  color: #607086;
  font-size: 12px;
  font-weight: 800;
}
.floating-login-card {
  position: absolute;
  z-index: 6;
  width: 170px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  color: #061f46;
  animation: accountCardFloat 5s ease-in-out infinite;
}
.floating-login-card span {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #061f46;
  color: #fff;
  font-weight: 900;
}
.floating-login-card strong,
.floating-login-card em {
  display: block;
}
.floating-login-card em {
  margin-top: 4px;
  font-style: normal;
  color: #607086;
  font-size: 13px;
}
.card-webmail {
  top: 28px;
  left: 26px;
}
.card-planner {
  right: 2px;
  bottom: 74px;
  animation-delay: 0.8s;
}
.card-support {
  left: 88px;
  bottom: 42px;
  animation-delay: 1.5s;
}
.kt12-account-section {
  position: relative;
}
.account-access-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 28px;
}
.account-access-card {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(6, 31, 70, 0.08);
  box-shadow: 0 24px 70px rgba(6, 31, 70, 0.12);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.account-access-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(6, 31, 70, 0.18);
}
.account-access-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 199, 252, 0.2),
    rgba(0, 199, 252, 0) 72%
  );
}
.account-access-card.featured {
  background: #061f46;
  color: #fff;
}
.access-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00c7fc, #1d73ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 24px;
}
.account-access-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #00aeea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.account-access-card h2,
.account-access-card h3 {
  margin: 0 0 14px;
  color: #061f46;
  line-height: 1.05;
}
.account-access-card h2 {
  font-size: clamp(30px, 4vw, 54px);
}
.account-access-card h3 {
  font-size: 30px;
}
.account-access-card p {
  margin: 0 0 24px;
  color: #607086;
  line-height: 1.7;
}
.account-access-card.featured h2,
.account-access-card.featured p {
  color: #fff;
}
.account-access-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: #00c7fc;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
@keyframes accountPanelFloat {
  0%,
  100% {
    transform: rotateY(-15deg) rotateX(8deg) rotateZ(-2deg) translateY(0);
  }
  50% {
    transform: rotateY(-9deg) rotateX(5deg) rotateZ(1deg) translateY(-18px);
  }
}
@keyframes accountCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes accountFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -18px, 0) scale(1.08);
  }
}
@keyframes accountPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 199, 252, 0.34);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(0, 199, 252, 0);
  }
}
@media (max-width: 1080px) {
  .account-hero-grid,
  .account-access-grid {
    grid-template-columns: 1fr;
  }
  .account-dashboard-art {
    min-height: 520px;
  }
  .account-main-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotateY(-10deg) rotateX(6deg);
  }
}
@media (max-width: 620px) {
  .account-hero-actions {
    flex-direction: column;
  }
  .account-dashboard-art {
    min-height: 430px;
  }
  .account-main-panel {
    width: 92%;
    top: 40px;
  }
  .account-mini-grid {
    grid-template-columns: 1fr;
  }
  .floating-login-card {
    width: 138px;
    padding: 14px;
  }
  .card-webmail {
    left: 8px;
    top: 18px;
  }
  .card-planner {
    right: 8px;
    bottom: 30px;
  }
  .card-support {
    display: none;
  }
}
.cbm-pro-hero {
  overflow: hidden;
}
.cbm-pro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 620px);
  gap: 70px;
  align-items: center;
}
.cbm-pro-copy {
  position: relative;
  z-index: 3;
}
.cbm-pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.cbm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cbm-btn:hover {
  transform: translateY(-4px);
}
.cbm-btn.primary {
  background: linear-gradient(135deg, #00c7fc, #1d73ff);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 199, 252, 0.28);
}
.cbm-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.cbm-btn.dark {
  background: #061f46;
  color: #fff;
}
.cbm-pro-visual {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}
.cbm-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.85;
}
.glow-a {
  width: 360px;
  height: 360px;
  top: 40px;
  right: 20px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 252, 0.45),
    rgba(0, 199, 252, 0) 70%
  );
  animation: cbmFloat 7s ease-in-out infinite;
}
.glow-b {
  width: 300px;
  height: 300px;
  right: 260px;
  bottom: 50px;
  background: radial-gradient(
    circle,
    rgba(176, 203, 31, 0.35),
    rgba(176, 203, 31, 0) 72%
  );
  animation: cbmFloat 8s ease-in-out infinite reverse;
}
.cbm-dashboard-card {
  position: absolute;
  top: 70px;
  right: 0;
  width: 590px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 46px 120px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: rotateY(-14deg) rotateX(8deg) rotateZ(-2deg);
  animation: cbmDashboardFloat 6.5s ease-in-out infinite;
}
.cbm-dash-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.22);
}
.cbm-dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}
.cbm-dash-top strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cbm-dash-screen {
  padding: 18px;
}
.cbm-dash-screen img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}
.cbm-floating-pill {
  position: absolute;
  z-index: 5;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #061f46;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  animation: cbmPillFloat 5s ease-in-out infinite;
}
.pill-one {
  top: 36px;
  left: 32px;
}
.pill-two {
  top: 250px;
  right: -12px;
  animation-delay: 0.7s;
}
.pill-three {
  bottom: 92px;
  left: 20px;
  animation-delay: 1.3s;
}
.pill-four {
  bottom: 34px;
  right: 80px;
  animation-delay: 1.9s;
}
.cbm-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 46px;
}
.cbm-intro-grid h2 {
  margin: 10px 0 0;
  color: #061f46;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92;
}
.cbm-intro-grid p {
  color: #607086;
  font-size: 18px;
  line-height: 1.75;
}
.cbm-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cbm-feature {
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(6, 31, 70, 0.08);
  box-shadow: 0 22px 65px rgba(6, 31, 70, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.cbm-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px rgba(6, 31, 70, 0.16);
}
.cbm-feature span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  align-items: center;
  justify-content: center;
  background: #061f46;
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}
.cbm-feature h3 {
  margin: 0 0 12px;
  color: #061f46;
  font-size: 24px;
}
.cbm-feature p {
  margin: 0;
  color: #607086;
  line-height: 1.65;
}
.cbm-dark-showcase {
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 199, 252, 0.24),
      transparent 36%
    ),
    #061f46;
  color: #fff;
  overflow: hidden;
}
.cbm-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.cbm-showcase-copy h2 {
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92;
}
.cbm-showcase-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}
.cbm-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}
.cbm-checks span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}
.cbm-stack {
  position: relative;
  min-height: 440px;
}
.stack-card {
  position: absolute;
  width: 320px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}
.stack-card strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}
.stack-card em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.68);
}
.stack-one {
  top: 30px;
  right: 20px;
  transform: rotate(6deg);
  animation: cbmStackOne 6s ease-in-out infinite;
}
.stack-two {
  top: 160px;
  left: 20px;
  transform: rotate(-7deg);
  animation: cbmStackTwo 6.5s ease-in-out infinite;
}
.stack-three {
  bottom: 30px;
  right: 80px;
  transform: rotate(3deg);
  animation: cbmStackThree 7s ease-in-out infinite;
}
.cbm-final-cta {
  padding: clamp(40px, 6vw, 80px);
  border-radius: 40px;
  background: linear-gradient(135deg, #061f46, #092d60);
  color: #fff;
  text-align: center;
  box-shadow: 0 34px 100px rgba(6, 31, 70, 0.22);
  position: relative;
  overflow: hidden;
}
.cbm-final-cta:before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(0, 199, 252, 0.34),
    transparent 30%
  );
}
.cbm-final-cta > * {
  position: relative;
  z-index: 2;
}
.cbm-final-cta span {
  color: #00c7fc;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cbm-final-cta h2 {
  margin: 12px auto 14px;
  max-width: 780px;
  color: #fff;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.9;
}
.cbm-final-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}
.cbm-final-cta .cbm-pro-actions {
  justify-content: center;
}
@keyframes cbmDashboardFloat {
  0%,
  100% {
    transform: rotateY(-14deg) rotateX(8deg) rotateZ(-2deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateX(5deg) rotateZ(1deg) translateY(-20px);
  }
}
@keyframes cbmPillFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes cbmFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -20px, 0) scale(1.08);
  }
}
@keyframes cbmStackOne {
  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-18px);
  }
}
@keyframes cbmStackTwo {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-16px);
  }
}
@keyframes cbmStackThree {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(8deg) translateY(-20px);
  }
}
@media (max-width: 1080px) {
  .cbm-pro-hero-grid,
  .cbm-intro-grid,
  .cbm-showcase-grid {
    grid-template-columns: 1fr;
  }
  .cbm-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cbm-dashboard-card {
    left: 50%;
    right: auto;
    width: 92%;
    transform: translateX(-50%) rotateY(-10deg) rotateX(6deg);
  }
}
@media (max-width: 620px) {
  .cbm-pro-visual {
    min-height: 430px;
  }
  .cbm-dashboard-card {
    top: 50px;
  }
  .cbm-dash-screen img {
    height: 220px;
  }
  .cbm-feature-grid {
    grid-template-columns: 1fr;
  }
  .cbm-floating-pill {
    font-size: 11px;
    padding: 10px 13px;
  }
  .pill-two,
  .pill-four {
    display: none;
  }
  .cbm-stack {
    min-height: 520px;
  }
  .stack-card {
    width: 260px;
  }
  .stack-one {
    right: 10px;
  }
  .stack-two {
    left: 8px;
  }
  .stack-three {
    right: 20px;
  }
  .cbm-pro-actions {
    flex-direction: column;
  }
}
.kt12-work-hero-pro {
  overflow: hidden;
}
.work-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: 70px;
  align-items: center;
}
.work-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.work-btn {
  display: inline-flex;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.work-btn:hover {
  transform: translateY(-4px);
}
.work-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #00c7fc, #1d73ff);
  box-shadow: 0 18px 50px rgba(0, 199, 252, 0.28);
}
.work-btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.work-btn.dark {
  background: #061f46;
  color: #fff;
}
.work-hero-art {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}
.work-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.8;
}
.orb-one {
  width: 340px;
  height: 340px;
  right: 30px;
  top: 40px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 252, 0.46),
    rgba(0, 199, 252, 0) 70%
  );
  animation: workOrb 7s ease-in-out infinite;
}
.orb-two {
  width: 290px;
  height: 290px;
  left: 20px;
  bottom: 46px;
  background: radial-gradient(
    circle,
    rgba(176, 203, 31, 0.32),
    rgba(176, 203, 31, 0) 72%
  );
  animation: workOrb 8s ease-in-out infinite reverse;
}
.work-stack-card {
  position: absolute;
  width: 330px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.work-stack-card img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
  object-position: top center;
}
.work-stack-card span {
  display: block;
  padding: 15px 18px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.stack-expedition {
  top: 38px;
  right: 18px;
  transform: rotateY(-16deg) rotateX(8deg) rotateZ(-4deg);
  animation: stackFloatA 6s ease-in-out infinite;
}
.stack-cbm {
  top: 210px;
  left: 0;
  width: 380px;
  transform: rotateY(12deg) rotateX(6deg) rotateZ(3deg);
  animation: stackFloatB 6.8s ease-in-out infinite;
}
.stack-soom {
  right: 70px;
  bottom: 30px;
  transform: rotateY(-10deg) rotateX(4deg) rotateZ(6deg);
  animation: stackFloatC 7.2s ease-in-out infinite;
}
.portfolio-feature-head {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.portfolio-feature-head h2,
.portfolio-wall-head h2 {
  color: #061f46;
  margin: 10px 0 0;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.92;
}
.portfolio-feature-head p {
  color: #607086;
  font-size: 18px;
  line-height: 1.75;
}
.cbm-portfolio-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  border-radius: 44px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(0, 199, 252, 0.22),
      transparent 34%
    ),
    #061f46;
  color: #fff;
  box-shadow: 0 40px 120px rgba(6, 31, 70, 0.22);
  overflow: hidden;
}
.cbm-feature-copy span {
  display: inline-flex;
  color: #00c7fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cbm-feature-copy h3 {
  color: #fff;
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.88;
}
.cbm-feature-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}
.cbm-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.cbm-feature-tags em {
  font-style: normal;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}
.cbm-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cbm-feature-actions a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #00c7fc;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.cbm-feature-actions a:nth-child(2) {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cbm-feature-screen {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
  transform: rotateY(-9deg) rotateX(4deg) rotateZ(2deg);
  animation: cbmPortfolioFloat 6s ease-in-out infinite;
}
.cbm-screen-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.22);
}
.cbm-screen-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}
.cbm-screen-top strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cbm-feature-screen img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top center;
}
.kt12-portfolio-wall {
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 199, 252, 0.12),
      transparent 30%
    ),
    #f6fbff;
  overflow: hidden;
}
.portfolio-wall-head {
  max-width: 900px;
  margin-bottom: 44px;
}
.portfolio-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.portfolio-project {
  grid-column: span 4;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 80px rgba(6, 31, 70, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.portfolio-project.project-large {
  grid-column: span 8;
}
.portfolio-project:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 100px rgba(6, 31, 70, 0.2);
}
.portfolio-project a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.project-shot {
  margin: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: #eaf2f8;
}
.project-shot img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s ease;
}
.project-large .project-shot img {
  height: 410px;
}
.portfolio-project:hover .project-shot img {
  transform: scale(1.06);
}
.project-info {
  padding: 4px 28px 32px;
}
.project-info span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #00aeea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.project-info h3 {
  color: #061f46;
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
}
.project-info p {
  margin: 0;
  color: #607086;
  line-height: 1.65;
}
.project-dark,
.project-restaurant {
  background: #061f46;
}
.project-dark .project-info h3,
.project-dark .project-info p,
.project-restaurant .project-info h3,
.project-restaurant .project-info p {
  color: #fff;
}
.project-colour {
  background: linear-gradient(135deg, #fff, #fff4ee);
}
.work-cta-panel {
  padding: clamp(42px, 6vw, 84px);
  border-radius: 44px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(0, 199, 252, 0.32),
      transparent 32%
    ),
    #061f46;
  box-shadow: 0 34px 100px rgba(6, 31, 70, 0.22);
}
.work-cta-panel span {
  color: #00c7fc;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.work-cta-panel h2 {
  max-width: 860px;
  margin: 12px auto 16px;
  color: #fff;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.9;
}
.work-cta-panel p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}
.work-cta-panel .work-hero-actions {
  justify-content: center;
}
@keyframes workOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -18px, 0) scale(1.08);
  }
}
@keyframes stackFloatA {
  0%,
  100% {
    transform: rotateY(-16deg) rotateX(8deg) rotateZ(-4deg) translateY(0);
  }
  50% {
    transform: rotateY(-10deg) rotateX(5deg) rotateZ(0deg) translateY(-16px);
  }
}
@keyframes stackFloatB {
  0%,
  100% {
    transform: rotateY(12deg) rotateX(6deg) rotateZ(3deg) translateY(0);
  }
  50% {
    transform: rotateY(7deg) rotateX(4deg) rotateZ(-1deg) translateY(-18px);
  }
}
@keyframes stackFloatC {
  0%,
  100% {
    transform: rotateY(-10deg) rotateX(4deg) rotateZ(6deg) translateY(0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(3deg) rotateZ(2deg) translateY(-15px);
  }
}
@keyframes cbmPortfolioFloat {
  0%,
  100% {
    transform: rotateY(-9deg) rotateX(4deg) rotateZ(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-4deg) rotateX(2deg) rotateZ(-1deg) translateY(-18px);
  }
}
@media (max-width: 1080px) {
  .work-hero-grid,
  .portfolio-feature-head,
  .cbm-portfolio-card {
    grid-template-columns: 1fr;
  }
  .portfolio-project,
  .portfolio-project.project-large {
    grid-column: span 6;
  }
  .cbm-feature-screen {
    transform: none;
  }
}
@media (max-width: 700px) {
  .work-hero-art {
    min-height: 430px;
  }
  .work-stack-card,
  .stack-cbm {
    width: 280px;
  }
  .work-stack-card img {
    height: 170px;
  }
  .stack-expedition {
    right: 0;
  }
  .stack-cbm {
    left: 0;
    top: 170px;
  }
  .stack-soom {
    right: 20px;
    bottom: 10px;
  }
  .portfolio-project,
  .portfolio-project.project-large {
    grid-column: span 12;
  }
  .project-shot img,
  .project-large .project-shot img,
  .cbm-feature-screen img {
    height: 240px;
  }
  .work-hero-actions,
  .cbm-feature-actions {
    flex-direction: column;
  }
}
.work-portfolio-orbit {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}
.portfolio-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.25),
    inset 0 0 50px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: portfolioCoreFloat 5.5s ease-in-out infinite;
  z-index: 5;
}
.portfolio-core span {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00c7fc, #b0cb1f);
  color: #061f46;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 14px;
  box-shadow: 0 0 0 0 rgba(0, 199, 252, 0.35);
  animation: portfolioPulse 2.8s ease-in-out infinite;
}
.portfolio-core strong {
  color: #061f46;
  font-size: 25px;
  font-weight: 950;
}
.portfolio-core em {
  margin-top: 7px;
  font-style: normal;
  color: rgba(6, 31, 70, 0.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.portfolio-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
}
.portfolio-ring.ring-one {
  width: 320px;
  height: 320px;
  animation: portfolioSpin 18s linear infinite;
}
.portfolio-ring.ring-two {
  width: 430px;
  height: 430px;
  border-color: rgba(0, 199, 252, 0.32);
  animation: portfolioSpin 24s linear infinite reverse;
}
.portfolio-ring.ring-three {
  width: 520px;
  height: 520px;
  border-color: rgba(176, 203, 31, 0.22);
  transform: translate(-50%, -50%) rotateX(68deg);
  animation: portfolioTiltSpin 22s linear infinite;
}
.portfolio-node,
.portfolio-mini-card {
  position: absolute;
  z-index: 7;
  background: rgba(255, 255, 255, 0.92);
  color: #061f46;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}
.portfolio-node {
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: portfolioNodeFloat 5s ease-in-out infinite;
}
.node-web {
  top: 58px;
  left: 40px;
}
.node-cbm {
  top: 112px;
  right: 0;
  animation-delay: 0.6s;
}
.node-seo {
  bottom: 104px;
  right: 32px;
  animation-delay: 1.2s;
}
.node-shop {
  bottom: 72px;
  left: 18px;
  animation-delay: 1.8s;
}
.portfolio-mini-card {
  width: 132px;
  padding: 18px;
  border-radius: 24px;
  animation: portfolioCardFloat 6s ease-in-out infinite;
}
.portfolio-mini-card b,
.portfolio-mini-card span {
  display: block;
}
.portfolio-mini-card b {
  font-size: 34px;
  line-height: 1;
  color: #061f46;
}
.portfolio-mini-card span {
  margin-top: 7px;
  color: #607086;
  font-size: 12px;
  font-weight: 900;
}
.card-one {
  top: 24px;
  right: 160px;
  transform: rotate(-5deg);
}
.card-two {
  top: 255px;
  left: -4px;
  transform: rotate(6deg);
  animation-delay: 0.9s;
}
.card-three {
  right: 50px;
  bottom: 14px;
  transform: rotate(-3deg);
  animation-delay: 1.6s;
}
@keyframes portfolioCoreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
}
@keyframes portfolioPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 199, 252, 0.35);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(0, 199, 252, 0);
  }
}
@keyframes portfolioSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes portfolioTiltSpin {
  from {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg);
  }
}
@keyframes portfolioNodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes portfolioCardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}
@media (max-width: 700px) {
  .work-portfolio-orbit {
    min-height: 390px;
  }
  .portfolio-core {
    width: 155px;
    height: 155px;
  }
  .portfolio-core span {
    width: 48px;
    height: 48px;
    border-radius: 17px;
  }
  .portfolio-core strong {
    font-size: 20px;
  }
  .portfolio-ring.ring-one {
    width: 240px;
    height: 240px;
  }
  .portfolio-ring.ring-two {
    width: 310px;
    height: 310px;
  }
  .portfolio-ring.ring-three {
    display: none;
  }
  .portfolio-node {
    font-size: 10px;
    padding: 10px 13px;
  }
  .portfolio-mini-card {
    width: 110px;
    padding: 14px;
  }
  .portfolio-mini-card b {
    font-size: 26px;
  }
  .card-two {
    display: none;
  }
}
.mobile-links a {
  font-size: 18px !important;
}
.thankyou-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #061f46;
}
.status-step span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef6fb;
  font-size: 22px;
  font-weight: 800;
}
.status-step.active span {
  background: #00c7fc;
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 199, 252, 0.4);
}
.status-line {
  width: 70px;
  height: 2px;
  background: rgba(6, 31, 70, 0.15);
}
.thankyou-panel {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}
.thankyou-checks {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.thankyou-checks div {
  padding: 25px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(6, 31, 70, 0.05);
}
.thankyou-card {
  background: linear-gradient(135deg, #061f46, #0a3a6d);
  padding: 40px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  box-shadow: 0 25px 60px rgba(6, 31, 70, 0.2);
}
.phone-link {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #00c7fc;
  text-decoration: none;
  margin: 20px 0;
}
.thankyou-next {
  text-align: center;
  max-width: 850px;
  margin: auto;
}
.thankyou-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .thankyou-panel {
    grid-template-columns: 1fr;
  }
  .status-line {
    display: none;
  }
  .phone-link {
    font-size: 28px;
  }
}
.thankyou-hero .wrap {
  max-width: 1200px;
}
.thankyou-hero h1 {
  max-width: 1100px;
  line-height: 0.95;
  letter-spacing: -3px;
}
.cta-call-section {
  background: linear-gradient(135deg, #09111d, #12263f);
  padding: 90px 0;
}
.guildford-cta {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.guildford-cta:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #b0cb1f;
  opacity: 0.08;
  border-radius: 50%;
  top: -180px;
  right: -120px;
}
.guildford-cta .kicker {
  color: #b0cb1f;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.guildford-cta h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 25px;
}
.guildford-cta p {
  max-width: 760px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 18px;
}
.guildford-cta .btn {
  margin-top: 20px;
  font-size: 20px;
  padding: 18px 42px;
}
.guildford-cta .btn:hover {
  transform: translateY(-3px);
}
@media (max-width: 767px) {
  .guildford-cta {
    padding: 40px 25px;
  }
  .guildford-cta h2 {
    font-size: 32px;
  }
  .guildford-cta p {
    font-size: 16px;
  }
  .guildford-cta .btn {
    width: 100%;
    max-width: 320px;
  }
}
.kt12-404-section {
  padding: 140px 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(19, 170, 229, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #ffffff, #f4fbff);
}
.kt12-404-card {
  margin: 80px auto 0;
  max-width: 90%;
  padding: 70px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(16, 43, 58, 0.1);
  border: 1px solid rgba(16, 43, 58, 0.08);
}
.kt12-404-card h1 {
  margin: 18px 0 22px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: #102b3a;
}
.kt12-404-card p {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.65;
  color: #5e7180;
}
.kt12-404-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}
.kt12-404-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: 22px;
  background: #071923;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  transition: 0.3s ease;
}
.kt12-404-links a:after {
  content: "\2192";
  color: #13aae5;
}
.kt12-404-links a:hover {
  transform: translateY(-5px);
  background: #13aae5;
  box-shadow: 0 20px 50px rgba(19, 170, 229, 0.28);
}
.kt12-404-links a:hover:after {
  color: #fff;
}
@media (max-width: 800px) {
  .kt12-404-section {
    padding: 90px 0;
  }
  .kt12-404-card {
    padding: 40px 26px;
  }
  .kt12-404-links {
    grid-template-columns: 1fr;
  }
}
/* =========================================
KT12 FLOATING WHATSAPP
========================================= */
.kt12-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.kt12-whatsapp-bubble {
  background: #ffffff;
  color: #0a2a43;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 30px;
  white-space: nowrap;
  border: 1px solid rgba(46, 184, 245, 0.15);
  box-shadow: 0 15px 50px rgba(10, 42, 67, 0.12);
  position: relative;
  animation: kt12Bubble 12s infinite;
}
.kt12-whatsapp-bubble:after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  border-right: 1px solid rgba(46, 184, 245, 0.15);
  border-top: 1px solid rgba(46, 184, 245, 0.15);
}
.kt12-whatsapp-btn {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #52ade3;
  box-shadow: 0 20px 60px rgba(46, 184, 245, 0.35);
  transition: all 0.35s ease;
}
.kt12-whatsapp-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 30px 80px rgba(46, 184, 245, 0.45);
}
.kt12-whatsapp-btn svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}
@keyframes kt12Bubble {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  8% {
    opacity: 1;
    transform: translateX(0);
  }
  45% {
    opacity: 1;
    transform: translateX(0);
  }
  55% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
@media (max-width: 768px) {
  .kt12-whatsapp {
    right: 15px;
    bottom: 15px;
  }
  .kt12-whatsapp-bubble {
    display: none;
  }
  .kt12-whatsapp-btn {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }
}
.darrel-bio-intro {
  max-width: 1000px;
  padding: 44px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(16, 43, 58, 0.08);
  box-shadow: 0 24px 70px rgba(16, 43, 58, 0.08);
}
.darrel-bio-intro p {
  color: #5e7180;
  font-size: 20px;
  line-height: 1.75;
}
.darrel-accordion {
  display: grid;
  gap: 18px;
}
.darrel-accordion details {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(16, 43, 58, 0.08);
  box-shadow: 0 22px 60px rgba(16, 43, 58, 0.08);
}
.darrel-accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  color: #102b3a;
  font-size: 24px;
  font-weight: 950;
}
.darrel-accordion summary::-webkit-details-marker {
  display: none;
}
.darrel-accordion summary span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #13aae5;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 16px 38px rgba(19, 170, 229, 0.28);
}
.darrel-accordion summary:after {
  content: "+";
  margin-left: auto;
  color: #13aae5;
  font-size: 34px;
  line-height: 1;
}
.darrel-accordion details[open] summary:after {
  content: "\2212";
}
.darrel-accordion details div {
  padding: 0 30px 30px 96px;
}
.darrel-accordion details p {
  color: #5e7180;
  font-size: 19px;
  line-height: 1.75;
}
@media (max-width: 700px) {
  .darrel-bio-intro {
    padding: 28px;
  }
  .darrel-accordion summary {
    font-size: 20px;
    padding: 22px;
  }
  .darrel-accordion details div {
    padding: 0 22px 24px;
  }
}
.darrel-profile-card {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.darrel-profile-image {
  position: relative;
  max-width: 520px;
  z-index: 5;
}
.darrel-profile-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.18));
}
.darrel-floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(16, 43, 58, 0.12);
  border: 1px solid rgba(16, 43, 58, 0.08);
  z-index: 10;
  animation: darrelFloat 6s ease-in-out infinite;
}
.darrel-floating-badge strong {
  display: block;
  color: #0e2b3a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}
.darrel-floating-badge span {
  display: block;
  color: #6b7680;
  font-size: 12px;
  margin-top: 3px;
}
.badge-years {
  top: 20px;
  right: 20px;
}
.badge-wordpress {
  left: 0;
  top: 140px;
}
.badge-seo {
  right: -10px;
  bottom: 160px;
}
.badge-ai {
  left: 40px;
  bottom: 60px;
}
@keyframes darrelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 980px) {
  .darrel-profile-image {
    max-width: 360px;
  }
  .darrel-floating-badge {
    transform: scale(0.9);
  }
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sitemap-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(16, 43, 58, 0.08);
  box-shadow: 0 24px 70px rgba(16, 43, 58, 0.08);
  display: grid;
  gap: 12px;
}
.sitemap-card span {
  color: #13aae5;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sitemap-card a {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4fbff;
  color: #102b3a;
  font-weight: 850;
  text-decoration: none;
  transition: 0.25s ease;
}
.sitemap-card a:hover {
  background: #52ade3;
  color: #fff;
  transform: translateX(6px);
}
@media (max-width: 900px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

  
/* =========================================
KT12 REVIEWS SECTION
========================================= */
.kt12-reviews-section {
  position: relative;
  padding: 0px;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(82, 173, 227, 0.22),
      transparent 32%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(82, 173, 227, 0.12),
      transparent 34%
    ),
    linear-gradient(135deg, #06131d 0%, #082332 50%, #06131d 100%);
  overflow: hidden;
}
.kt12-reviews-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.22;
  pointer-events: none;
}
.reviews-orb {
  position: absolute;
  right: -170px;
  top: -170px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(82, 173, 227, 0.18);
  filter: blur(48px);
}
.kt12-reviews-panel {
  position: relative;
  z-index: 2;
  padding: 72px 54px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 44px 130px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}
.kt12-reviews-panel:after {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  right: 50px;
  top: 42px;
  color: rgba(82, 173, 227, 0.1);
  font-size: 88px;
  letter-spacing: 0.08em;
  font-weight: 950;
  pointer-events: none;
}
.footer-reviews-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 34px;
}
.footer-reviews-head h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 12px 0 16px;
}
.footer-reviews-head p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
}
.kt12-review-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.kt12-review-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: kt12ReviewScroll 55s linear infinite;
}
.kt12-review-marquee:hover .kt12-review-track {
  animation-play-state: paused;
}
.kt12-review-card {
  width: 360px;
  min-height: 230px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.055)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}
.kt12-review-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(82, 173, 227, 0.18);
  filter: blur(25px);
}
.review-stars {
  color: #52ade3;
  letter-spacing: 0.18em;
  font-size: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.kt12-review-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
  position: relative;
  z-index: 2;
}
.kt12-review-card strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}
@keyframes kt12ReviewScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 800px) {
  .kt12-reviews-section {
  }
  .kt12-reviews-panel {
    padding: 44px 24px;
  }
  .kt12-reviews-panel:after {
    font-size: 46px;
    right: 22px;
    top: 22px;
  }
  .kt12-review-card {
    width: 300px;
    min-height: 250px;
  }
  .kt12-review-track {
    animation-duration: 75s;
  }
}
.menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  .nav .links,
  .nav > .btn {
    display: none !important;
  }
  .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .menu-toggle {
    display: flex !important;
    width: 58px !important;
    height: 58px !important;
    border: 0 !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, #ffffff, #f3fbff) !important;
    box-shadow: 0 18px 45px rgba(6, 31, 70, 0.14) !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 6px !important;
    z-index: 1000001 !important;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 25px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #061f46 !important;
    transition: 0.35s ease;
  }
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  body.mobile-lock {
    overflow: hidden;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(6, 31, 70, 0.58);
    backdrop-filter: blur(14px);
  }
  .mobile-menu-inner {
    position: absolute;
    top: 14px;
    right: 14px;
    bottom: 14px;
    width: min(440px, calc(100vw - 28px));
    padding: 28px;
    border-radius: 0px;
    overflow-y: auto;
    background:
      radial-gradient(
        circle at 85% 12%,
        rgba(82, 173, 227, 0.28),
        transparent 34%
      ),
      radial-gradient(
        circle at 12% 88%,
        rgba(176, 203, 31, 0.18),
        transparent 36%
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98),
        rgba(244, 251, 255, 0.96)
      );
    box-shadow: -30px 0 100px rgba(0, 0, 0, 0.32);
    transform: translateX(115%);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
  }
  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 36px;
  }
  .mobile-menu-top img {
    max-width: 150px;
    height: auto;
  }
  .menu-close {
    border: 0;
    border-radius: 999px;
    padding: 13px 18px;
    background: #061f46;
    color: #fff;
    font-weight: 950;
    cursor: pointer;
  }
  .mobile-links {
    display: grid;
    gap: 12px;
  }
  .mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 0 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(6, 31, 70, 0.08);
    box-shadow: 0 14px 36px rgba(6, 31, 70, 0.08);
    color: #061f46;
    text-decoration: none;
    font-size: 24px !important;
    font-weight: 950;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateX(34px);
    transition:
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.5s ease,
      background 0.25s ease,
      color 0.25s ease;
  }
  .mobile-links a:after {
    content: "\2192";
    color: #52ade3;
    font-size: 22px;
    transition: 0.25s ease;
  }
  .mobile-menu.open .mobile-links a {
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-menu.open .mobile-links a:nth-child(1) {
    transition-delay: 0.08s;
  }
  .mobile-menu.open .mobile-links a:nth-child(2) {
    transition-delay: 0.13s;
  }
  .mobile-menu.open .mobile-links a:nth-child(3) {
    transition-delay: 0.18s;
  }
  .mobile-menu.open .mobile-links a:nth-child(4) {
    transition-delay: 0.23s;
  }
  .mobile-menu.open .mobile-links a:nth-child(5) {
    transition-delay: 0.28s;
  }
  .mobile-menu.open .mobile-links a:nth-child(6) {
    transition-delay: 0.33s;
  }
  .mobile-links a:hover {
    background: #061f46;
    color: #fff;
    transform: translateY(-3px);
  }
  .mobile-links a:hover:after {
    color: #b0cb1f;
    transform: translateX(4px);
  }
  .menu-preview {
    margin-top: 28px;
    padding: 26px;
    border-radius: 30px;
    background:
      radial-gradient(
        circle at 85% 10%,
        rgba(82, 173, 227, 0.28),
        transparent 38%
      ),
      #061f46;
    color: #fff;
    box-shadow: 0 24px 70px rgba(6, 31, 70, 0.22);
  }
  .menu-preview span {
    display: block;
    color: #52ade3;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }
  .menu-preview strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.05em;
  }
  .menu-preview p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    margin: 12px 0 0;
  }
  .mobile-menu-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #52ade3, #1d73ff);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 950;
    box-shadow: 0 20px 55px rgba(82, 173, 227, 0.35);
  }
}
@media (max-width: 520px) {
  .mobile-menu-inner {
    inset: 0 0 0 auto;
    width: 92vw;
    border-radius: 0px 0 0 30px;
    padding: 26px 22px;
  }
  .mobile-links a {
    font-size: 22px !important;
  }
}
.mobile-links {
  display: grid;
  gap: 22px;
}
.mobile-links a:after {
  content: "\2192";
  font-size: 28px;
  color: #52ade3;
  opacity: 0.6;
  transition: 0.3s ease;
}
.mobile-links a:hover {
  background: #061f46;
  color: #fff;
}
.mobile-links a:hover:after {
  opacity: 1;
  color: #52ade3;
  transform: translateX(5px);
}
@media (max-width: 980px) {
  .mobile-menu-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 26px 22px !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
  }

  .mobile-links {
    gap: 12px !important;
  }

  .mobile-links a {
    height: auto !important;
    min-height: 64px !important;
    padding: 18px 24px !important;
    border-radius: 22px !important;
    font-size: 26px !important;
    line-height: 1.1 !important;
  }

  .mobile-menu-contact {
    margin-top: 24px !important;
  }

  .mobile-menu-phone {
    min-height: 62px !important;
    font-size: 20px !important;
  }

  .mobile-menu-socials a {
    min-height: 58px !important;
  }
}

@media (max-width: 520px) {
  .mobile-links a {
    font-size: 24px !important;
    min-height: 58px !important;
    padding: 16px 22px !important;
  }
}
@media (max-width:980px){

    html,
    body{
        overflow-x:hidden !important;
        max-width:100vw !important;
    }

    .mobile-menu{
        width:100vw !important;
        max-width:100vw !important;
        overflow:hidden !important;
    }

    .mobile-menu-inner{
        width:100vw !important;
        max-width:100vw !important;
        overflow-x:hidden !important;
        box-sizing:border-box !important;
    }

    .mobile-links,
    .mobile-menu-contact,
    .menu-preview{
        width:100% !important;
        max-width:100% !important;
        box-sizing:border-box !important;
    }

    .mobile-links a,
    .mobile-menu-phone,
    .mobile-menu-socials a{
        width:100% !important;
        box-sizing:border-box !important;
    }
}


/* =========================================
   KT12 CSS REPAIR PATCH
   Fixes: rocket visibility, launch animation, encoded symbols.
========================================= */

/* Accordion minus signs - use CSS escape to avoid encoding issues */
.seo-accordion details[open] summary:after,
.darrel-accordion details[open] summary:after {
  content: "\2212" !important;
}

/* Arrow symbols - use CSS escape to avoid odd characters */
.mobile-links a:after,
.kt12-404-links a:after {
  content: "\2192" !important;
}

/* Reviews background stars - use CSS escape to avoid odd characters */
.kt12-reviews-panel:after {
  content: "\2605\2605\2605\2605\2605" !important;
}

/* ==========================================
   KT12 HERO STORY: CODE STREAM TO ROCKET
========================================== */

.kt12-hero-story {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  height: 210px;
  z-index: 12;
  pointer-events: none;
  overflow: visible;
}

.kt12-story-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.kt12-story-stage,
.stage-wireframe,
.stage-website,
.stage-seo,
.stage-launch,
.kt12-story-character {
  display: none !important;
}

.kt12-code-stream {
  position: absolute;
  right: 250px;
  bottom: 72px;
  width: 330px;
  height: 80px;
  z-index: 35;
  pointer-events: none;
}

.kt12-code-stream::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(82,173,227,.75), transparent);
  box-shadow: 0 0 18px rgba(82,173,227,.75);
  opacity: 0;
  animation: kt12CodeBeam 14s forwards;
}

.kt12-code-stream span {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(6,31,70,.76);
  border: 1px solid rgba(82,173,227,.55);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-shadow: 0 0 12px rgba(82,173,227,.9);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 0 22px rgba(82,173,227,.45);
  opacity: 0;
  transform: translate(-90px, -50%) scale(.65);
  animation: kt12CodeFlow 14s forwards;
}

.kt12-code-stream span:nth-child(1) { animation-delay: 0s; }
.kt12-code-stream span:nth-child(2) { animation-delay: .35s; }
.kt12-code-stream span:nth-child(3) { animation-delay: .7s; }
.kt12-code-stream span:nth-child(4) { animation-delay: 1.05s; }
.kt12-code-stream span:nth-child(5) { animation-delay: 1.4s; }

.kt12-launch-area {
  position: absolute;
  right: 8%;
  bottom: 10px;
  width: 190px;
  height: 200px;
  overflow: visible;
  z-index: 30;
}

.kt12-launch-pad {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 118px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(6,31,70,0), #52ade3, rgba(6,31,70,0));
  box-shadow: 0 0 24px rgba(82,173,227,.95), 0 0 58px rgba(82,173,227,.45);
}

.kt12-launch-pad::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 150px;
  height: 46px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,173,227,.42), rgba(82,173,227,0) 68%);
  animation: kt12PadGlow 14s forwards;
}

.kt12-css-rocket {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 48px;
  height: 116px;
  transform: translateX(-50%);
  transform-origin: center bottom;
  z-index: 50;
  animation: kt12RocketTakeoff 14s forwards;
}

.kt12-css-rocket span {
  position: absolute;
  display: block;
}

.rocket-body-main {
  left: 50%;
  top: 34px;
  width: 40px;
  height: 64px;
  transform: translateX(-50%);
  border-radius: 22px 22px 13px 13px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,.36) 18% 31%, transparent 31% 100%),
    linear-gradient(180deg, #ffffff 0%, #e9f9ff 48%, #52ade3 100%);
  box-shadow: inset -7px -5px 0 rgba(6,31,70,.14), 0 0 26px rgba(82,173,227,.75);
  z-index: 3;
}

.rocket-nose {
  left: 50%;
  top: 0;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-bottom: 38px solid #e62b2b;
  background: transparent !important;
  border-radius: 0 !important;
  z-index: 4;
}

.rocket-window {
  left: 50%;
  top: 53px;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #061f46;
  border: 3px solid #b0cb1f;
  z-index: 5;
  box-shadow: inset 0 0 8px rgba(255,255,255,.32);
}

.rocket-fin {
  bottom: 18px;
  width: 18px;
  height: 34px;
  background: #e62b2b;
  z-index: 2;
}

.rocket-fin-left {
  left: -4px;
  transform: rotate(-20deg);
  border-radius: 18px 2px 2px 18px;
}

.rocket-fin-right {
  right: -4px;
  transform: rotate(20deg);
  border-radius: 2px 18px 18px 2px;
}

.rocket-flame-main {
  left: 50%;
  bottom: -48px;
  width: 24px;
  height: 58px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff27a 0%, #ff9f1c 42%, rgba(255,80,0,0) 100%);
  filter: blur(.3px);
  opacity: 0;
  z-index: 1;
  animation: kt12RocketFlame 14s forwards;
}

.kt12-launch-area::before,
.kt12-launch-area::after {
  content: "";
  position: absolute;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  filter: blur(4px);
  opacity: 0;
  z-index: 20;
  animation: kt12SmokeBurst 14s forwards;
}

.kt12-launch-area::before { left: 42px; }
.kt12-launch-area::after {
  right: 42px;
  animation-delay: .18s;
}

.kt12-project-launched {
  position: absolute;
  left: 50%;
  top: -42px;
  transform: translateX(-50%) translateY(10px) scale(.9);
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #39d98a, #18b96f);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  white-space: nowrap;
  opacity: 0;
  z-index: 60;
  box-shadow: 0 0 0 6px rgba(57,217,138,.14), 0 18px 45px rgba(57,217,138,.42);
  animation: kt12LaunchMessage 14s forwards;
}

.kt12-project-launched::before {
  content: "✓ ";
}

/* Faster timing */
@keyframes kt12CodeBeam {
  0%, 18% {
    opacity: 0;
    transform: translateY(-50%) scaleX(.35);
  }
  25%, 42% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
  50%, 100% {
    opacity: 0;
    transform: translateY(-50%) scaleX(.45);
  }
}

@keyframes kt12CodeFlow {
  0%, 18% {
    opacity: 0;
    transform: translate(-90px, -50%) scale(.65);
  }
  26% {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
  38% {
    opacity: 1;
    transform: translate(170px, -50%) scale(.92);
  }
  48%, 100% {
    opacity: 0;
    transform: translate(250px, -50%) scale(.55);
  }
}

@keyframes kt12RocketTakeoff {
  0%, 42% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  }
  52% {
    opacity: 1;
    transform: translateX(-50%) translateY(-16px) rotate(-3deg) scale(1.04);
  }
  68% {
    opacity: 1;
    transform: translateX(-50%) translateY(-190px) rotate(-10deg) scale(.95);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-440px) rotate(-20deg) scale(.72);
  }
}

@keyframes kt12RocketFlame {
  0%, 42% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
  }
  52%, 74% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
  }
}

@keyframes kt12SmokeBurst {
  0%, 42% {
    opacity: 0;
    transform: scale(.2) translateY(0);
  }
  52% {
    opacity: .9;
    transform: scale(1) translateY(6px);
  }
  72% {
    opacity: .28;
    transform: scale(2.4) translateY(24px);
  }
  100% {
    opacity: 0;
    transform: scale(3) translateY(36px);
  }
}

@keyframes kt12PadGlow {
  0%, 42% {
    opacity: .22;
    transform: translateX(-50%) scale(.7);
  }
  52%, 72% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.55);
  }
}

@keyframes kt12LaunchMessage {
  0%, 56% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(.9);
  }
  62%, 82% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(.96);
  }
}

@media (max-width: 1024px) {
  .kt12-code-stream {
    right: 195px;
    bottom: 70px;
    transform: scale(.82);
    transform-origin: right center;
  }

  .kt12-launch-area {
    right: 5%;
    transform: scale(.82);
    transform-origin: bottom right;
  }
}

@media (max-width: 768px) {
  .kt12-hero-story {
    display: none !important;
  }
}
/* =========================================
   LIVERPOOL FC MATCH BREAKS FEATURED PROJECT
   ========================================= */

.portfolio-project-featured {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 25, 48, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(218, 30, 40, 0.1),
      transparent 32%
    ),
    #fff;
  box-shadow:
    0 28px 70px rgba(14, 25, 48, 0.11),
    0 8px 24px rgba(14, 25, 48, 0.06);
  transition:
    transform 0.45s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.45s ease;
}

.portfolio-project-featured:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 90px rgba(14, 25, 48, 0.17),
    0 12px 30px rgba(14, 25, 48, 0.08);
}

.portfolio-project-featured > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.portfolio-project-featured .project-shot {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #111827;
}

.portfolio-project-featured .project-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(6, 12, 25, 0.46),
    transparent
  );
}

.portfolio-project-featured .project-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.8s cubic-bezier(.2, .8, .2, 1),
    filter 0.5s ease;
}

.portfolio-project-featured:hover .project-shot img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.project-shot-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(8, 15, 30, 0.12),
      transparent 36%
    );
}

.project-live-badge {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111b30;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(5, 12, 25, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.project-live-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc1e2e;
  box-shadow: 0 0 0 5px rgba(220, 30, 46, 0.13);
  animation: lfc-live-pulse 2s infinite;
}

@keyframes lfc-live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(220, 30, 46, 0.13);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(220, 30, 46, 0);
  }
}

.project-view-button {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #dc1e2e;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(194, 20, 35, 0.3);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.project-view-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.portfolio-project-featured:hover .project-view-button {
  background: #bd1523;
  transform: translateY(-2px);
}

.portfolio-project-featured:hover .project-view-button svg {
  transform: translate(2px, -2px);
}

.project-featured-info {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 50px;
  align-items: center;
  padding: 38px 42px 42px;
}

.project-featured-copy > span {
  display: block;
  margin-bottom: 10px;
  color: #dc1e2e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-featured-copy h3 {
  margin: 0 0 13px;
  color: #101a30;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.project-featured-copy p {
  max-width: 760px;
  margin: 0;
  color: #62708a;
  font-size: 17px;
  line-height: 1.7;
}

.project-featured-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.project-featured-tags em {
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid rgba(15, 25, 48, 0.09);
  border-radius: 999px;
  background: #f4f7fb;
  color: #35425a;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

/* Responsive */

@media (max-width: 900px) {
  .portfolio-project-featured .project-shot,
  .portfolio-project-featured .project-shot img {
    min-height: 390px;
  }

  .project-featured-info {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
  }

  .project-featured-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .portfolio-project-featured {
    border-radius: 22px;
  }

  .portfolio-project-featured .project-shot,
  .portfolio-project-featured .project-shot img {
    min-height: 300px;
  }

  .portfolio-project-featured .project-shot img {
    object-position: center;
  }

  .project-live-badge {
    top: 16px;
    left: 16px;
    padding: 9px 12px;
    font-size: 10px;
  }

  .project-view-button {
    right: 16px;
    bottom: 16px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .project-featured-info {
    padding: 25px 22px 28px;
  }

  .project-featured-copy p {
    font-size: 15px;
  }

  .project-featured-tags {
    gap: 7px;
  }

  .project-featured-tags em {
    padding: 8px 10px;
    font-size: 11px;
  }
}
