:root {
  --bg: #06101f;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --bg-2: #0a1326;
  --panel: rgba(14, 27, 51, 0.72);
  --panel-solid: #101d35;
  --text: #f3f7ff;
  --muted: #a8b5cc;
  --soft: #d8e2f4;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #42e8ff;
  --primary-2: #7c5cff;
  --primary-3: #00ffa8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(66, 232, 255, 0.07), transparent 23rem),
    radial-gradient(circle at 20% 10%, rgba(66, 232, 255, 0.12), transparent 34%),
    radial-gradient(circle at 80% 0%, rgba(124, 92, 255, 0.18), transparent 30%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  display: block;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.34;
}

.orb-one {
  top: 7%;
  left: -90px;
  background: #0be7ff;
}

.orb-two {
  top: 22%;
  right: -120px;
  background: #7c5cff;
}

.orb-three {
  bottom: 4%;
  left: 46%;
  background: #00ffa8;
  opacity: 0.15;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 31, 0.72);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #04111f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(66, 232, 255, 0.2);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: .02em;
}

.brand-text small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .67rem;
}


/* Brand lockup integration only */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup img {
  display: block;
  width: 270px;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 14px rgba(66, 232, 255, .12));
}

.footer-lockup img {
  width: 238px;
}

@media (max-width: 780px) {
  .brand-lockup img {
    width: 198px;
  }

  .footer-lockup img {
    width: 182px;
  }
}

@media (max-width: 460px) {
  .brand-lockup img {
    width: 172px;
  }

  .footer-lockup img {
    width: 165px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a:not(.btn) {
  color: var(--muted);
  font-size: .95rem;
  transition: color .2s ease;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.btn-primary {
  color: #03101e;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 46px rgba(66, 232, 255, 0.18);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: var(--line);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: .9rem;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.075em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-text,
.section-heading p,
.why-copy p,
.contact-copy p,
.cta-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-bar span,
.project-tags span,
.tech-cloud span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.055);
  color: var(--soft);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: .88rem;
}

.hero-panel {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.terminal-card {
  width: min(100%, 520px);
  border: 1px solid rgba(66, 232, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    rgba(9, 21, 40, 0.82);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-2deg);
}

.terminal-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.34);
}

.terminal-top span:nth-child(1) { background: #ff5f57; }
.terminal-top span:nth-child(2) { background: #ffbd2e; }
.terminal-top span:nth-child(3) { background: #28c840; }

.terminal-top small {
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .08em;
}

.terminal-body {
  padding: 30px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #d7f9ff;
  font-size: .95rem;
}

.terminal-body p {
  margin: 0 0 15px;
}

.code-key {
  color: var(--primary);
}

.status-ok {
  color: var(--primary-3);
}

.floating-card {
  position: absolute;
  max-width: 230px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(12, 26, 50, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--muted);
  font-size: .92rem;
}

.card-one {
  top: 48px;
  right: 12px;
}

.card-two {
  bottom: 42px;
  left: 0;
}

.logos-strip {
  padding: 24px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  border-radius: 24px;
  padding: 16px;
}

.strip-grid span {
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 0;
}

.cards-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.project-card,
.timeline-item,
.cta-card,
.contact-form,
.why-list,
.why-copy,
.contact-copy {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.074), rgba(255,255,255,0.035));
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.service-card,
.project-card {
  padding: 26px;
  min-height: 255px;
}

.service-card p,
.project-card p,
.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: #03101e;
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.alt-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border-block: 1px solid rgba(255,255,255,0.07);
}

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

.project-card {
  min-height: 230px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.project-tags span {
  padding: 7px 11px;
  color: var(--primary);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: step;
}

.timeline-item {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.timeline-item::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 auto;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(66, 232, 255, .22), transparent 70%);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #03101e;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.tech-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-cloud span {
  padding: 12px 15px;
  font-weight: 800;
  color: var(--soft);
}

.why-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}

.why-copy,
.why-list {
  padding: 32px;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.046);
  border: 1px solid rgba(255,255,255,0.08);
}

.why-list strong,
.why-list span {
  display: block;
}

.why-list strong {
  margin-bottom: 5px;
}

.why-list span {
  color: var(--muted);
}

.cta-section {
  padding-top: 48px;
}

.cta-card {
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(66, 232, 255, .16), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(124, 92, 255, .2), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
}

.cta-card p {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
  align-items: start;
}

.contact-copy {
  padding: 32px;
  position: sticky;
  top: 110px;
}

.contact-info {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted);
}

.contact-info a {
  color: var(--primary);
  font-weight: 900;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 800;
  font-size: .92rem;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(4, 12, 25, 0.72);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(66, 232, 255, .7);
  box-shadow: 0 0 0 4px rgba(66, 232, 255, .1);
  background: rgba(4, 12, 25, 0.95);
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: .87rem;
  margin: 0;
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 10, 22, 0.62);
  padding: 34px 0;
}

.footer-grid,
.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-grid p,
.copyright {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.copyright {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: .9rem;
}


.reveal {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: .97;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity .72s cubic-bezier(.2,.8,.2,1),
    filter .72s cubic-bezier(.2,.8,.2,1),
    transform .72s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal.is-exiting {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(var(--exit-x, 0px), var(--exit-y, 22px), 0) scale(.985);
}

.delay-1 {
  transition-delay: .12s;
}

/* Cards enter from sides */
.services-grid .reveal:nth-child(odd),
.project-grid .reveal:nth-child(odd) {
  --reveal-x: -72px;
  --exit-x: -56px;
  --exit-y: 36px;
}

.services-grid .reveal:nth-child(even),
.project-grid .reveal:nth-child(even) {
  --reveal-x: 72px;
  --exit-x: 56px;
  --exit-y: 36px;
}

.timeline .reveal:nth-child(odd) {
  --reveal-x: -60px;
  --exit-x: -48px;
  --exit-y: 26px;
}

.timeline .reveal:nth-child(even) {
  --reveal-x: 60px;
  --exit-x: 48px;
  --exit-y: 26px;
}

.why-grid .reveal:nth-child(1),
.contact-grid .reveal:nth-child(1),
.tech-layout .reveal:nth-child(1) {
  --reveal-x: -54px;
  --exit-x: -42px;
  --exit-y: 20px;
}

.why-grid .reveal:nth-child(2),
.contact-grid .reveal:nth-child(2),
.tech-layout .reveal:nth-child(2) {
  --reveal-x: 54px;
  --exit-x: 42px;
  --exit-y: 20px;
}

.reveal[data-stagger="1"] { transition-delay: .04s; }
.reveal[data-stagger="2"] { transition-delay: .10s; }
.reveal[data-stagger="3"] { transition-delay: .16s; }
.reveal[data-stagger="4"] { transition-delay: .22s; }
.reveal[data-stagger="5"] { transition-delay: .28s; }
.reveal[data-stagger="6"] { transition-delay: .34s; }



/* Dynamic card motion */
.service-card,
.project-card,
.timeline-item {
  position: relative;
  overflow: hidden;
  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease;
}

.service-card::before,
.project-card::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(66, 232, 255, .16), transparent 28%),
    linear-gradient(135deg, rgba(66, 232, 255, .12), transparent 35%, rgba(124, 92, 255, .12));
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.service-card::after,
.project-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 55%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: rotate(18deg);
  opacity: 0;
  transition: left .75s ease, opacity .28s ease;
  pointer-events: none;
}

.service-card:hover,
.project-card:hover,
.timeline-item:hover {
  transform: translateY(-9px) scale(1.015);
  border-color: rgba(66, 232, 255, .38);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .32), 0 0 38px rgba(66, 232, 255, .08);
}

.service-card:hover::before,
.project-card:hover::before,
.timeline-item:hover::before {
  opacity: 1;
}

.service-card:hover::after,
.project-card:hover::after {
  left: 120%;
  opacity: 1;
}

.service-card > *,
.project-card > *,
.timeline-item > * {
  position: relative;
  z-index: 1;
}

.hero-panel {
  animation: heroFloat 7s ease-in-out infinite;
}

.terminal-card {
  animation: terminalPulse 5.8s ease-in-out infinite;
}

.floating-card {
  animation: floatingCard 5.5s ease-in-out infinite;
}

.card-two {
  animation-delay: 1.1s;
}

.brand-mark,
.icon,
.timeline-item span {
  position: relative;
  overflow: hidden;
}

.brand-mark::after,
.icon::after,
.timeline-item span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.42), transparent 78%);
  transform: translateX(-120%);
  animation: miniShine 4.2s ease-in-out infinite;
}

.tech-cloud span,
.trust-bar span,
.project-tags span {
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.tech-cloud span:hover,
.trust-bar span:hover,
.project-tags span:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 232, 255, .42);
  background: rgba(66, 232, 255, .08);
  color: var(--text);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
}

.btn:hover::after {
  left: 130%;
}

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

@keyframes terminalPulse {
  0%, 100% {
    box-shadow: var(--shadow), 0 0 0 rgba(66, 232, 255, 0);
  }
  50% {
    box-shadow: var(--shadow), 0 0 48px rgba(66, 232, 255, .09);
  }
}

@keyframes floatingCard {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(0, -12px, 0) rotate(.6deg); }
}

@keyframes miniShine {
  0%, 42% { transform: translateX(-120%); }
  58%, 100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-particles { display: none !important; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal,
  .reveal.is-visible,
  .reveal.is-exiting {
    opacity: 1;
    filter: none;
    transform: none;
  }
}




/* Network cursor particles */
.cursor-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: .78;
  mix-blend-mode: screen;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 3;
}


@media (max-width: 1040px) {
  .hero-grid,
  .tech-layout,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 470px;
  }

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

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

  .contact-copy {
    position: static;
  }

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

@media (max-width: 780px) {
  .section {
    padding: 70px 0;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 17, 33, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 10px 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    letter-spacing: -.055em;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 390px;
  }

  .terminal-card {
    transform: none;
  }

  .floating-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 14px;
  }

  .services-grid,
  .project-grid,
  .timeline,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .footer-grid,
  .copyright {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .project-card,
  .timeline-item,
  .why-copy,
  .why-list,
  .contact-copy,
  .contact-form {
    padding: 22px;
  }
}
