:root {
  --ft-white: #ffffff;
  --ft-cream: #fff8ef;
  --ft-cream-strong: #fff0cd;
  --ft-text: #151515;
  --ft-muted: #5d5d66;
  --ft-line: rgba(21, 21, 21, 0.1);
  --ft-line-strong: rgba(21, 21, 21, 0.18);
  --ft-blue: #156ef4;
  --ft-blue-strong: #0d56c4;
  --ft-yellow: #ffd54f;
  --ft-orange: #ff8b2d;
  --ft-orange-strong: #ff661f;
  --ft-shadow-lg: 0 36px 90px rgba(21, 21, 21, 0.12);
  --ft-shadow-md: 0 20px 45px rgba(21, 21, 21, 0.08);
  --ft-shadow-sm: 0 12px 24px rgba(21, 21, 21, 0.06);
  --ft-radius-xl: 36px;
  --ft-radius-lg: 28px;
  --ft-radius-md: 22px;
  --ft-radius-sm: 16px;
  --ft-font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --ft-font-body: "Manrope", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ft-font-body);
  color: var(--ft-text);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 213, 79, 0.3), transparent 18%),
    radial-gradient(circle at 95% 6%, rgba(255, 139, 45, 0.18), transparent 16%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 48%, #fff9f0 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 46% 54% 45% 55% / 56% 44% 56% 44%;
  filter: blur(18px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -6rem;
  right: -6rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 213, 79, 0.92), transparent 38%),
    radial-gradient(circle at 70% 55%, rgba(255, 102, 31, 0.45), transparent 48%);
}

body::after {
  bottom: -8rem;
  left: -7rem;
  background:
    radial-gradient(circle at 52% 40%, rgba(255, 139, 45, 0.4), transparent 40%),
    radial-gradient(circle at 40% 64%, rgba(255, 213, 79, 0.82), transparent 44%);
}

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

a {
  text-decoration: none;
}

.ft-skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--ft-text);
  background: var(--ft-white);
  box-shadow: var(--ft-shadow-sm);
  transform: translateY(-160%);
}

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

.ft-navbar {
  top: 0;
  padding-top: 1rem;
}

.ft-navbar .container {
  min-height: 4.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--ft-shadow-sm);
}

.ft-brand {
  display: inline-flex;
  align-items: center;
  color: var(--ft-text);
  padding: 0.18rem 0.4rem 0.18rem 0.22rem;
  border-radius: 999px;
  overflow: visible;
}

.ft-brand-logo {
  display: block;
  width: clamp(7.25rem, 14vw, 9.75rem);
  height: auto;
  object-fit: contain;
  border-radius: 1.2rem 0 0 1.2rem;
  transform: translateX(-0.18rem);
}

.ft-brand-copy strong,
.ft-hero-title,
.ft-section-title,
.ft-project-slide h3,
.ft-service-card h3,
.ft-highlight-card strong,
.ft-value-item strong,
.ft-brief-output strong {
  font-family: var(--ft-font-display);
  letter-spacing: -0.05em;
}

.ft-brand-copy strong,
.ft-brand-copy small {
  display: block;
}

.ft-brand-copy small {
  color: var(--ft-muted);
  font-size: 0.78rem;
}

.ft-nav-link {
  padding: 0.65rem 0.95rem !important;
  border-radius: 999px;
  color: var(--ft-muted);
  font-weight: 700;
}

.ft-nav-link:hover,
.ft-nav-link:focus-visible,
.ft-nav-link.active {
  color: var(--ft-text);
  background: rgba(21, 110, 244, 0.08);
}

.ft-mobile-socials {
  display: none;
}

.ft-btn {
  min-height: 3.2rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.ft-btn:hover,
.ft-btn:focus-visible,
.ft-play-trigger:hover,
.ft-play-trigger:focus-visible {
  transform: translateY(-2px);
}

.ft-btn-primary {
  color: var(--ft-white);
  background: linear-gradient(135deg, var(--ft-blue), #3f92ff);
  box-shadow: 0 22px 40px rgba(21, 110, 244, 0.24);
}

.ft-btn-secondary {
  color: var(--ft-text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--ft-shadow-sm);
}

.ft-btn-ghost {
  color: var(--ft-text);
  background: transparent;
  border: 1px solid var(--ft-line-strong);
}

.ft-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--ft-orange-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ft-eyebrow::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ft-yellow), var(--ft-orange));
  box-shadow: 0 0 0 8px rgba(255, 213, 79, 0.18);
}

.ft-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 3rem;
}

.ft-hero::before,
.ft-hero::after {
  content: "";
  position: absolute;
  border-radius: 48% 52% 38% 62% / 58% 34% 66% 42%;
  pointer-events: none;
}

.ft-hero::before {
  width: 18rem;
  height: 18rem;
  top: 6rem;
  left: -4rem;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 213, 79, 0.95), transparent 36%),
    radial-gradient(circle at 70% 65%, rgba(255, 139, 45, 0.5), transparent 48%);
}

.ft-hero::after {
  width: 20rem;
  height: 20rem;
  right: -5rem;
  top: 9rem;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 139, 45, 0.25), transparent 32%),
    radial-gradient(circle at 65% 60%, rgba(255, 213, 79, 0.8), transparent 44%);
}

.ft-hero-title {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.9;
}

.ft-hero-typed {
  min-height: 4.5rem;
  margin: 1rem 0 0;
  color: var(--ft-text);
  font-family: var(--ft-font-display);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.typed-text-output {
  color: var(--ft-text);
}

.typed-cursor {
  display: inline-block;
  width: 0;
  height: 0.95em;
  margin-left: 0.12em;
  border-right: 3px solid var(--ft-blue);
  transform: translateY(0.12em);
  animation: blink 0.8s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.ft-hero-copy,
.ft-section-intro,
.ft-project-slide p,
.ft-service-card p,
.ft-highlight-card p,
.ft-value-item span,
.ft-mini-card span,
.ft-form-note,
.ft-brief-output p,
.ft-status-note,
.ft-footer p {
  color: var(--ft-muted);
  line-height: 1.75;
}

.ft-mini-card,
.ft-service-card,
.ft-highlight-card,
.ft-form-card,
.ft-project-slide,
.ft-contact-shell,
.ft-value-item,
.ft-footer-shell {
  border: 1px solid var(--ft-line);
  border-radius: var(--ft-radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--ft-shadow-sm);
}

.ft-mini-card {
  height: 100%;
  padding: 1rem;
}

.ft-mini-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.ft-play-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 3.2rem;
  padding: 0.55rem 1.2rem 0.55rem 0.55rem;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 999px;
  color: var(--ft-text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--ft-shadow-sm);
}

.ft-play-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ft-yellow), var(--ft-orange));
}

.ft-play-icon::before {
  content: "";
  margin-left: 0.15rem;
  border-left: 0.72rem solid var(--ft-white);
  border-top: 0.46rem solid transparent;
  border-bottom: 0.46rem solid transparent;
}

.ft-portrait-stage {
  position: relative;
  padding: 1.4rem;
}

.ft-portrait-stage::before {
  content: "";
  position: absolute;
  inset: 1rem 0 0 2rem;
  border-radius: 46% 54% 44% 56% / 55% 41% 59% 45%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 213, 79, 0.9), transparent 28%),
    radial-gradient(circle at 70% 60%, rgba(255, 139, 45, 0.34), transparent 40%),
    radial-gradient(circle at 48% 48%, rgba(21, 110, 244, 0.12), transparent 62%);
}

.ft-portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--ft-radius-xl);
  background: var(--ft-white);
  box-shadow: var(--ft-shadow-lg);
}

.ft-portrait-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ft-floating-note {
  position: absolute;
  z-index: 2;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--ft-shadow-sm);
}

.ft-floating-note-top {
  top: 2rem;
  right: -0.35rem;
}

.ft-floating-note-bottom {
  left: -0.15rem;
  bottom: 2rem;
}

.ft-section {
  padding: 5.5rem 0;
}

.ft-section-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 0.98;
}

.ft-section-header {
  max-width: 52rem;
}

.ft-projects {
  position: relative;
}

.ft-project-carousel {
  padding-bottom: 3.5rem;
}

.ft-project-slide {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.ft-project-slide::before {
  content: "";
  position: absolute;
  inset: auto auto 0 -1rem;
  width: 15rem;
  height: 15rem;
  border-radius: 46% 54% 55% 45% / 42% 56% 44% 58%;
  opacity: 0.9;
  pointer-events: none;
}

.ft-project-slide > .row {
  position: relative;
  z-index: 1;
}

.ft-project-slide-sunrise::before {
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 213, 79, 0.92), transparent 34%),
    radial-gradient(circle at 68% 58%, rgba(255, 139, 45, 0.34), transparent 48%);
}

.ft-project-slide-citrus::before {
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 139, 45, 0.36), transparent 34%),
    radial-gradient(circle at 60% 50%, rgba(255, 213, 79, 0.9), transparent 42%);
}

.ft-project-slide-electric::before {
  background:
    radial-gradient(circle at 46% 42%, rgba(21, 110, 244, 0.22), transparent 34%),
    radial-gradient(circle at 62% 56%, rgba(255, 213, 79, 0.86), transparent 42%);
}

.ft-project-slide-omnishield::before {
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 139, 45, 0.88), transparent 32%),
    radial-gradient(circle at 64% 58%, rgba(21, 110, 244, 0.3), transparent 44%);
}

.ft-project-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--ft-orange-strong);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 139, 45, 0.12);
}

.ft-project-slide h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.ft-project-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--ft-text);
}

.ft-project-list li + li {
  margin-top: 0.45rem;
}

.ft-laptop-scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 26rem;
}

.ft-laptop-scene::before,
.ft-laptop-scene::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.ft-laptop-scene::before {
  width: 16rem;
  height: 16rem;
  background: rgba(255, 213, 79, 0.4);
  top: 1rem;
  right: 2rem;
}

.ft-laptop-scene::after {
  width: 13rem;
  height: 13rem;
  background: rgba(255, 139, 45, 0.22);
  bottom: 2rem;
  left: 2rem;
}

.ft-laptop {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
}

.ft-laptop-screen {
  padding: 0.85rem;
  border-radius: 1.5rem 1.5rem 0.9rem 0.9rem;
  background: linear-gradient(180deg, #202432 0%, #0f1320 100%);
  box-shadow: 0 30px 80px rgba(17, 19, 32, 0.26);
}

.ft-screen-bar {
  display: flex;
  gap: 0.35rem;
  padding-bottom: 0.7rem;
}

.ft-screen-bar span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.ft-laptop-preview {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 1rem;
  object-fit: contain;
  background: #ffffff;
}

.ft-screen-layout-preview {
  padding: 1rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 242, 247, 0.95) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.ft-screen-layout-preview-portal {
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(234, 242, 252, 0.95) 100%);
}

.ft-laptop-preview-shell {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 0.7rem;
  overflow: hidden;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 14px 34px rgba(17, 19, 32, 0.12),
    inset 0 0 0 1px rgba(21, 21, 21, 0.05);
}

.ft-laptop-preview-shell::before {
  content: "";
  position: absolute;
  inset: 0.7rem auto auto 0.7rem;
  width: 5.4rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21, 110, 244, 0.18), rgba(255, 139, 45, 0.12));
}

.ft-laptop-preview-shell-sunrise {
  background:
    radial-gradient(circle at top right, rgba(255, 213, 79, 0.2), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.ft-laptop-preview-shell-portal {
  background:
    radial-gradient(circle at top left, rgba(21, 110, 244, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.92);
}

.ft-laptop-preview-shell-ops {
  background:
    radial-gradient(circle at bottom right, rgba(21, 110, 244, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.ft-screen-layout,
.ft-screen-content {
  display: grid;
  gap: 0.8rem;
}

.ft-screen-layout {
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.ft-screen-layout-portal {
  grid-template-columns: 4.5rem 1fr;
}

.ft-screen-layout-ops {
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3fb 100%);
}

.ft-screen-sidebar,
.ft-screen-panel,
.ft-screen-grid span,
.ft-screen-footer,
.ft-screen-topline {
  border-radius: 0.9rem;
}

.ft-screen-sidebar {
  min-height: 11rem;
  background: linear-gradient(180deg, rgba(21, 110, 244, 0.16), rgba(255, 213, 79, 0.26));
}

.ft-screen-panel {
  min-height: 6rem;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.85), rgba(255, 139, 45, 0.48));
}

.ft-screen-panel-blue {
  background: linear-gradient(135deg, rgba(21, 110, 244, 0.86), rgba(83, 167, 255, 0.58));
}

.ft-screen-panel-highlight {
  min-height: 7rem;
}

.ft-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.ft-screen-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ft-screen-grid span {
  min-height: 4rem;
  background: rgba(21, 110, 244, 0.12);
}

.ft-screen-footer,
.ft-screen-topline {
  min-height: 2.2rem;
  background: rgba(21, 21, 21, 0.08);
}

.ft-screen-footer-blue {
  background: rgba(21, 110, 244, 0.18);
}

.ft-laptop-base {
  width: 108%;
  height: 1rem;
  margin: 0 auto;
  border-radius: 0 0 1.3rem 1.3rem;
  background: linear-gradient(180deg, #dfe4ec 0%, #bfc7d4 100%);
  transform: translateX(-4%);
}

.ft-carousel-indicators {
  bottom: -0.6rem;
  margin-bottom: 0;
}

.ft-carousel-indicators [data-bs-target] {
  width: 0.85rem;
  height: 0.85rem;
  border: 0;
  border-radius: 50%;
  background-color: rgba(21, 21, 21, 0.2);
}

.ft-carousel-indicators .active {
  background-color: var(--ft-blue);
}

.ft-carousel-control {
  width: 3.25rem;
  height: 3.25rem;
  top: auto;
  bottom: 0;
  border-radius: 50%;
  opacity: 1;
  background: var(--ft-white);
  box-shadow: var(--ft-shadow-sm);
}

.ft-carousel-control.carousel-control-prev {
  left: auto;
  right: 4.5rem;
}

.ft-carousel-control.carousel-control-next {
  right: 0;
}

.ft-carousel-control .carousel-control-prev-icon,
.ft-carousel-control .carousel-control-next-icon {
  filter: invert(1);
}

.ft-services {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 213, 79, 0.18), transparent 15%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.8), rgba(255, 255, 255, 0.96));
}

.ft-service-card,
.ft-highlight-card,
.ft-form-card,
.ft-value-item {
  height: 100%;
  padding: 1.4rem;
}

.ft-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  color: var(--ft-blue-strong);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.5), rgba(255, 139, 45, 0.18));
}

.ft-service-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.ft-service-price {
  margin-bottom: 0.75rem;
  color: var(--ft-blue-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.ft-service-package-btn {
  margin-top: 0.95rem;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.ft-packages-modal .modal-content {
  border: 0;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(255, 213, 79, 0.2), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
  box-shadow: 0 30px 80px rgba(8, 32, 80, 0.18);
}

.ft-packages-modal .modal-header,
.ft-packages-modal .modal-body {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ft-package-card {
  height: 100%;
  padding: 1.4rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 110, 244, 0.08);
  box-shadow: 0 20px 45px rgba(16, 48, 101, 0.08);
}

.ft-package-tier {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: var(--ft-blue-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(21, 110, 244, 0.08);
}

.ft-package-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.ft-package-price {
  margin-bottom: 1rem;
  color: var(--ft-blue-strong);
  font-size: 1.1rem;
  font-weight: 800;
}

.ft-package-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
  margin: 0;
}

.ft-package-list li {
  color: var(--ft-body);
}

.ft-why-us {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.ft-value-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ft-value-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.ft-highlight-card {
  min-height: 12rem;
}

.ft-highlight-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.ft-highlight-card-blue {
  background: linear-gradient(180deg, rgba(21, 110, 244, 0.12), rgba(255, 255, 255, 0.94));
}

.ft-highlight-card-orange {
  background: linear-gradient(180deg, rgba(255, 139, 45, 0.14), rgba(255, 255, 255, 0.94));
}

.ft-highlight-card-yellow {
  background: linear-gradient(180deg, rgba(255, 213, 79, 0.26), rgba(255, 255, 255, 0.94));
}

.ft-highlight-card-white {
  background: rgba(255, 255, 255, 0.96);
}

.ft-contact {
  position: relative;
}

.ft-contact-shell {
  padding: 2rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 213, 79, 0.24), transparent 20%),
    radial-gradient(circle at 92% 14%, rgba(255, 139, 45, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 239, 0.9));
}

.ft-social-panel {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--ft-line);
  border-radius: var(--ft-radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--ft-shadow-sm);
}

.ft-contact-info {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.ft-contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--ft-line);
  border-radius: var(--ft-radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--ft-shadow-sm);
}

.ft-contact-info-item i {
  color: var(--ft-blue-strong);
  font-size: 1.1rem;
}

.ft-contact-info-item strong,
.ft-footer-contact a,
.ft-footer-contact span,
.ft-footer-contact address {
  display: block;
}

.ft-contact-info-item strong {
  margin-bottom: 0.2rem;
  color: var(--ft-text);
}

.ft-contact-info-item a,
.ft-contact-info-item span,
.ft-contact-info-item address,
.ft-footer-contact a,
.ft-footer-contact span,
.ft-footer-contact address {
  color: var(--ft-muted);
  line-height: 1.6;
}

.ft-business-address {
  font-style: normal;
}

.ft-email-link {
  font-weight: 700;
}

.ft-social-title {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--ft-text);
  font-family: var(--ft-font-display);
  font-size: 1.15rem;
}

.ft-social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.ft-social-link,
.ft-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--ft-text);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.ft-social-link {
  padding: 0.9rem 1rem;
  border: 1px solid var(--ft-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.ft-social-link i,
.ft-footer-social-link i {
  color: var(--ft-blue-strong);
  font-size: 1.05rem;
}

.ft-social-link:hover,
.ft-social-link:focus-visible,
.ft-footer-social-link:hover,
.ft-footer-social-link:focus-visible {
  transform: translateY(-2px);
}

.ft-form-control {
  padding: 0.95rem 1rem;
  border: 1px solid var(--ft-line-strong);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
}

.ft-form-control:focus {
  border-color: rgba(21, 110, 244, 0.4);
  box-shadow: 0 0 0 0.25rem rgba(21, 110, 244, 0.12);
}

.ft-brief-preview {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(21, 21, 21, 0.18);
  border-radius: var(--ft-radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.ft-brief-row {
  padding: 0.85rem 0;
}

.ft-brief-row + .ft-brief-row {
  border-top: 1px solid var(--ft-line);
}

.ft-brief-row span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ft-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ft-footer {
  padding: 0 0 2rem;
}

.ft-footer-shell,
.ft-footer-social,
.ft-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ft-footer-shell {
  padding: 1.5rem;
}

.ft-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-footer-contact {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.9rem;
}

.ft-footer-links a,
.ft-footer-bottom a,
.ft-footer-social-jump {
  color: var(--ft-blue-strong);
  font-weight: 800;
}

.ft-footer-social-wrap {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
}

.ft-footer-social-jump {
  font-size: 0.95rem;
}

.ft-footer-social {
  flex-wrap: wrap;
  padding-top: 0;
}

.ft-footer-social-link {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--ft-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--ft-shadow-sm);
}

.ft-footer-bottom {
  padding: 1rem 0 0;
}

.ft-whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  color: var(--ft-white);
  font-weight: 800;
  background: linear-gradient(135deg, #1fbf5b, #0ea548);
  box-shadow: 0 18px 38px rgba(14, 165, 72, 0.28);
}

.ft-whatsapp-float i {
  font-size: 1.2rem;
}

.ft-toast-wrap {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1085;
}

.ft-toast {
  min-width: min(92vw, 24rem);
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 55px rgba(18, 37, 78, 0.18);
}

.ft-toast .toast-header {
  border-bottom: 1px solid rgba(21, 110, 244, 0.08);
}

.ft-toast-success .toast-header {
  background: linear-gradient(90deg, rgba(22, 190, 120, 0.18), rgba(255, 255, 255, 0.95));
}

.ft-toast-error .toast-header {
  background: linear-gradient(90deg, rgba(240, 88, 88, 0.16), rgba(255, 255, 255, 0.95));
}

.ft-video-modal .modal-content {
  border: 0;
  border-radius: var(--ft-radius-lg);
  box-shadow: var(--ft-shadow-lg);
}

@media (max-width: 991.98px) {
  .ft-navbar {
    padding-top: 0.7rem;
  }

  .ft-navbar .container {
    min-height: 4.25rem;
    padding: 0.65rem 0.85rem;
    border-radius: 1.75rem;
  }

  .ft-brand-logo {
    width: 6.4rem;
  }

  .ft-brand {
    padding: 0.12rem 0.32rem 0.12rem 0.16rem;
  }

  .ft-mobile-socials {
    display: grid;
    gap: 0.85rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ft-line);
  }

  .ft-mobile-socials-label {
    color: var(--ft-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .ft-mobile-socials-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .ft-mobile-socials-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid var(--ft-line);
    border-radius: 50%;
    color: var(--ft-blue-strong);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ft-shadow-sm);
  }

  .ft-carousel-control {
    display: none;
  }

  .ft-project-carousel {
    padding-bottom: 2.75rem;
  }
}

@media (max-width: 767.98px) {
  .ft-hero {
    padding-top: 7rem;
  }

  .ft-navbar {
    top: 0;
    padding-top: 0.45rem;
  }

  .ft-navbar .container {
    min-height: 3.7rem;
    padding: 0.48rem 0.72rem;
    border-radius: 1.35rem;
  }

  .ft-brand {
    padding: 0.08rem 0.24rem 0.08rem 0.12rem;
  }

  .ft-brand-logo {
    width: 5.7rem;
    transform: translateX(-0.12rem);
  }

  .navbar-toggler {
    padding: 0.18rem 0.35rem;
  }

  .navbar-toggler-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .ft-hero-typed {
    min-height: 3.8rem;
  }

  .ft-project-slide,
  .ft-contact-shell,
  .ft-footer-shell {
    padding: 1.35rem;
  }

  .ft-laptop-scene {
    min-height: 20rem;
  }

  .ft-footer-shell,
  .ft-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ft-footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .ft-footer-social-wrap {
    width: 100%;
  }

  .ft-toast-wrap {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
  }

  .ft-whatsapp-float {
    left: 0.8rem;
    right: auto;
    bottom: 5.2rem;
    padding: 0.82rem 1rem;
  }

  .ft-social-links {
    grid-template-columns: 1fr;
  }

  .ft-floating-note-top {
    right: 0.25rem;
  }

  .ft-floating-note-bottom {
    left: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}
