html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
  margin-bottom: 60px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.home-hidden-shell {
  display: none !important;
}

body.home-landing {
  margin-bottom: 0;
  background: #090d14;
  color: #e6ecff;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body.home-landing > .container {
  max-width: 100% !important;
  padding: 0 !important;
}

.home-page {
  --bg: #0b0f14;
  --text: #ebefff;
  --muted: #9ca9c9;
  --accent: #72f5d2;
  --accent-2: #67a2ff;
  --stroke: rgba(255, 255, 255, 0.12);
  --pointer-x: 50%;
  --pointer-y: 50%;
  background:
    radial-gradient(900px 500px at var(--pointer-x) var(--pointer-y), rgba(103, 162, 255, 0.12), transparent 60%),
    radial-gradient(700px 500px at 20% 15%, rgba(114, 245, 210, 0.12), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

.home-shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.home-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, 94vw);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(9, 13, 20, 0.7);
  backdrop-filter: blur(10px);
}

.home-brand {
  color: var(--text);
  font-weight: 700;
  font-size: 1.06rem;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.home-brand span {
  color: var(--accent);
}

.home-nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.home-nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.home-nav-links a:hover {
  color: var(--text);
}

.home-nav-btn {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  color: #081119;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(103, 162, 255, 0.26);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(114, 245, 210, 0.28);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 84px;
}

.home-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 3%, black 20%, black 80%, transparent 100%);
  opacity: 0.2;
}

.home-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.7;
}

.home-hero-glow-a {
  width: 380px;
  height: 380px;
  top: 10%;
  left: -5%;
  background: rgba(114, 245, 210, 0.32);
  animation: home-float 9s ease-in-out infinite;
}

.home-hero-glow-b {
  width: 460px;
  height: 460px;
  top: 8%;
  right: -12%;
  background: rgba(103, 162, 255, 0.28);
  animation: home-float 11s ease-in-out infinite reverse;
}

.home-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.home-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.home-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7.2vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  font-weight: 800;
}

.home-hero-copy > p {
  margin: 22px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.home-btn-primary {
  padding: 13px 22px;
  color: #071019;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(103, 162, 255, 0.28);
}

.home-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 38px rgba(114, 245, 210, 0.34);
}

.home-btn-secondary {
  padding: 13px 22px;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.home-btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(114, 245, 210, 0.6);
  box-shadow: 0 12px 32px rgba(114, 245, 210, 0.2);
}

.home-metric-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 16px;
}

.home-metric-row strong {
  display: block;
  font-size: 1.9rem;
  color: var(--text);
  line-height: 1;
}

.home-metric-row span {
  margin-top: 8px;
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.home-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.home-startup-visual {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.home-startup-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 245, 210, 0.35) 0%, rgba(103, 162, 255, 0.2) 45%, transparent 70%);
  filter: blur(12px);
  animation: home-startup-pulse 5s ease-in-out infinite;
}

.home-startup-orbit {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: home-startup-spin 28s linear infinite;
}

.home-startup-burst {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.home-startup-burst span {
  position: absolute;
  width: 120%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 244, 214, 0.5), transparent);
  opacity: 0.55;
  animation: home-burst-fade 3.2s ease-in-out infinite;
}

.home-startup-burst span:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
.home-startup-burst span:nth-child(2) { transform: rotate(60deg); animation-delay: 0.4s; }
.home-startup-burst span:nth-child(3) { transform: rotate(120deg); animation-delay: 0.8s; }

.home-startup-rocket-wrap {
  position: relative;
  z-index: 2;
  width: min(38%, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 44px;
}

.home-startup-smoke {
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 240%;
  height: 110px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.home-startup-smoke-core {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 48%;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, rgba(180, 210, 255, 0.4) 28%, rgba(114, 245, 210, 0.15) 55%, transparent 72%);
  filter: blur(4px);
  opacity: 0.9;
  animation: home-smoke-core-pulse 1.4s ease-in-out infinite;
}

.home-startup-smoke-puff {
  position: absolute;
  bottom: -8px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 45% 40%, rgba(235, 240, 255, 0.75) 0%, rgba(160, 185, 220, 0.45) 35%, rgba(100, 120, 150, 0.2) 58%, transparent 76%);
  filter: blur(8px);
  transform-origin: 50% 100%;
  box-shadow: 0 0 24px rgba(200, 220, 255, 0.25);
  animation: home-smoke-plume 2.4s ease-out infinite;
}

.home-startup-smoke-puff--1 {
  left: 6%;
  width: 58%;
  height: 52px;
  animation-delay: 0s;
}

.home-startup-smoke-puff--2 {
  left: 32%;
  width: 52%;
  height: 46px;
  animation-delay: 0.25s;
  animation-duration: 2.75s;
}

.home-startup-smoke-puff--3 {
  left: 12%;
  width: 44%;
  height: 40px;
  animation-delay: 0.5s;
  animation-duration: 2.95s;
}

.home-startup-smoke-puff--4 {
  left: 40%;
  bottom: -2px;
  width: 42%;
  height: 38px;
  animation-delay: 0.15s;
  animation-duration: 2.65s;
}

.home-startup-smoke-puff--5 {
  left: 24%;
  bottom: 4px;
  width: 36%;
  height: 34px;
  background: radial-gradient(ellipse at center, rgba(184, 235, 220, 0.5) 0%, rgba(120, 160, 190, 0.28) 45%, transparent 75%);
  animation-delay: 0.4s;
  animation-duration: 2.85s;
}

.home-startup-smoke-puff--6 {
  left: 52%;
  bottom: 6px;
  width: 34%;
  height: 32px;
  animation-delay: 0.55s;
  animation-duration: 3.05s;
}

.home-startup-rocket {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 36px rgba(6, 10, 18, 0.75));
  animation: home-rocket-nudge 4.5s ease-in-out infinite;
}

@keyframes home-smoke-plume {
  0% {
    opacity: 0.85;
    transform: translateY(0) scale(0.65, 0.5);
  }
  100% {
    opacity: 0;
    transform: translateY(48px) scale(1.85, 1.45);
  }
}

@keyframes home-smoke-core-pulse {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1, 0.95); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08, 1.05); }
}

.home-startup-float {
  position: absolute;
  z-index: 3;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--text);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(16, 24, 38, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 32px rgba(6, 10, 18, 0.45);
  animation: home-float-tag 6s ease-in-out infinite;
}

.home-startup-float--a {
  top: 14%;
  right: 4%;
  animation-delay: 0s;
}

.home-startup-float--b {
  bottom: 22%;
  left: 0;
  animation-delay: 1s;
}

.home-startup-float--c {
  top: auto;
  left: auto;
  right: 2%;
  bottom: 34%;
  animation-delay: 2s;
}

@keyframes home-startup-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes home-startup-spin {
  to { transform: rotate(360deg); }
}

@keyframes home-burst-fade {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.65; }
}

@keyframes home-rocket-nudge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes home-float-tag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.home-section {
  padding: 82px 0;
}

.home-section-dark {
  background: linear-gradient(180deg, rgba(19, 29, 44, 0.88), rgba(11, 15, 20, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-services-section {
  position: relative;
  overflow: hidden;
}

.home-services-section .home-shell {
  position: relative;
  z-index: 1;
}

.home-services-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: min(120vw, 860px);
  height: min(120vw, 860px);
  background: radial-gradient(circle, rgba(124, 92, 255, 0.2) 0%, rgba(88, 60, 200, 0.09) 42%, transparent 68%);
  pointer-events: none;
}

.home-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.home-section-head p {
  margin-top: 14px;
  max-width: 620px;
  color: var(--muted);
}

.home-services-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .home-services-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

.home-service-card {
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(12, 19, 30, 0.9), rgba(18, 28, 43, 0.86));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(114, 245, 210, 0.55);
  box-shadow: 0 18px 40px rgba(8, 14, 24, 0.6);
}

.home-service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  color: #e8eeff;
  background: linear-gradient(145deg, rgba(103, 162, 255, 0.38), rgba(114, 245, 210, 0.22));
  box-shadow:
    0 0 28px rgba(103, 162, 255, 0.35),
    0 8px 20px rgba(8, 12, 22, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.home-service-icon svg {
  width: 26px;
  height: 26px;
}

.home-service-card h3 {
  margin: 14px 0 8px;
  font-size: 1.1rem;
}

.home-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.93rem;
}

.home-portfolio-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-portfolio-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.home-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(9, 13, 22, 0.58);
  border-color: rgba(114, 245, 210, 0.35);
}

.home-portfolio-thumb-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-portfolio-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #0d1520;
}

.home-portfolio-shot {
  position: absolute;
  inset: 0;
  width: 125%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-portfolio-card:hover .home-portfolio-shot {
  transform: scale(1.04);
}

.home-portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 10, 18, 0.78) 0%, transparent 42%),
    linear-gradient(to bottom, rgba(6, 10, 18, 0.25) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}

.home-portfolio-thumb-label {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .home-portfolio-thumb-label {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }
}

.home-portfolio-thumb--aniket {
  background: linear-gradient(145deg, #142a4a 0%, #0d6b8c 50%, #1a2332 100%);
}

.home-portfolio-thumb--rbhu {
  background: linear-gradient(145deg, #1c2f4a 0%, #2d5a8c 45%, #16302a 100%);
}

.home-portfolio-thumb--strength {
  background: linear-gradient(145deg, #3a1020 0%, #8b2942 48%, #1a1528 100%);
}

.home-portfolio-thumb-wrap:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.home-portfolio-body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 640px) {
  .home-portfolio-body {
    padding: 18px 20px 22px;
  }
}

.home-portfolio-region {
  margin: 0 0 6px;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.35;
}

.home-portfolio-body h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

@media (min-width: 640px) {
  .home-portfolio-body h3 {
    font-size: 1.14rem;
  }
}

.home-portfolio-spotlight {
  margin: 0 0 14px;
  padding: 12px 14px 12px 16px;
  border: none;
  quotes: none;
  border-left: 3px solid rgba(114, 245, 210, 0.75);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  line-height: 1.55;
  color: #d2daf1;
}

.home-portfolio-spotlight-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.home-portfolio-pills {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-portfolio-pills li {
  font-size: 0.76rem;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.5);
  color: var(--muted);
  line-height: 1.25;
}

.home-portfolio-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

@media (min-width: 640px) {
  .home-portfolio-stats {
    gap: 10px;
  }
}

.home-portfolio-stat {
  padding: 10px 6px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  min-width: 0;
}

.home-portfolio-stat-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  word-break: break-word;
}

@media (min-width: 640px) {
  .home-portfolio-stat-val {
    font-size: 1.02rem;
  }
}

.home-portfolio-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.65rem;
  color: var(--muted);
  line-height: 1.25;
}

.home-portfolio-summary {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--muted);
  flex: 1;
}

@media (min-width: 640px) {
  .home-portfolio-summary {
    font-size: 0.92rem;
  }
}

.home-portfolio-tech {
  padding: 12px 14px;
  margin: 0 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.home-portfolio-tech-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.home-portfolio-tech-pills {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-portfolio-tech-pills li {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  background: linear-gradient(130deg, rgba(114, 245, 210, 0.16), rgba(103, 162, 255, 0.2));
  color: var(--text);
}

.home-portfolio-tech-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.home-portfolio-cta {
  margin-top: auto;
  align-self: flex-start;
  color: var(--accent);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.home-portfolio-cta:hover {
  color: var(--accent-2);
  transform: translateX(3px);
}

.home-timeline {
  margin-top: 34px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 16px;
}

.home-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(114, 245, 210, 0), rgba(114, 245, 210, 0.6), rgba(103, 162, 255, 0.6), rgba(103, 162, 255, 0));
}

.home-step {
  position: relative;
  z-index: 2;
  padding-top: 42px;
}

.home-step i {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 700;
  color: #081119;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 26px rgba(103, 162, 255, 0.3);
}

.home-step h3 {
  margin: 0 0 8px;
}

.home-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-testimonials-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

.home-quote-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(17, 26, 40, 0.86), rgba(17, 23, 36, 0.72));
  padding: 22px;
  box-shadow: 0 14px 38px rgba(6, 11, 19, 0.38);
  transition: transform 0.3s ease;
}

.home-quote-card:hover {
  transform: translateY(-6px);
}

.home-quote-card > p {
  margin: 0;
  color: #d7def3;
  line-height: 1.75;
}

.home-quote-card > div {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #071019;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7df4d6, #8dd8ff);
}

.home-quote-card h4 {
  margin: 0;
  font-size: 0.95rem;
}

.home-quote-card small {
  color: var(--muted);
}

.home-contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 768px) {
  .home-contact-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 36px 40px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .home-contact-wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 480px);
    gap: 40px 48px;
  }
}

.home-contact-intro {
  max-width: 36rem;
}

.home-contact-phone {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(114, 245, 210, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.home-contact-phone-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}

.home-contact-phone-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.home-contact-phone-link:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-field-row {
  margin-bottom: 12px;
}

.home-field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.home-contact-form {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 22px;
}

.home-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.home-contact-form input,
.home-contact-form textarea,
.home-contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(8, 12, 20, 0.55);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-contact-form select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca9c9' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.home-contact-form select option {
  color: #0b0f14;
  background: #e8ecff;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus,
.home-contact-form select:focus {
  border-color: rgba(114, 245, 210, 0.8);
  box-shadow: 0 0 0 4px rgba(114, 245, 210, 0.14);
}

.home-contact-form textarea {
  margin-bottom: 14px;
  resize: vertical;
}

.home-submit {
  width: 100%;
  border: 0;
}

.home-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes home-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

@media (prefers-reduced-motion: reduce) {
  .home-startup-glow,
  .home-startup-orbit,
  .home-startup-burst span,
  .home-startup-rocket,
  .home-startup-smoke-puff,
  .home-startup-smoke-core,
  .home-startup-float {
    animation: none !important;
  }

  .home-hero-glow-a,
  .home-hero-glow-b {
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .home-nav-links {
    display: none;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
  }

  .home-portfolio-grid,
  .home-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .home-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-top: 118px;
  }

  .home-portfolio-grid,
  .home-testimonials-grid,
  .home-timeline,
  .home-input-grid,
  .home-metric-row {
    grid-template-columns: 1fr;
  }

  .home-startup-visual {
    width: min(320px, 88vw);
    margin: 0 auto;
  }

  .home-startup-float {
    font-size: 0.72rem;
    padding: 7px 11px;
  }

  .home-startup-float--c {
    right: 0;
    bottom: 30%;
  }

  .home-nav {
    width: 92vw;
    border-radius: 14px;
  }
}