:root {
  --bg: #050816;
  --bg-soft: #0b1228;
  --text: #f8fbff;
  --muted: #9fb0d1;
  --primary: #38bdf8;
  --primary-soft: rgba(56, 189, 248, 0.16);
  --line: rgba(148, 163, 184, 0.24);
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #0d1631, var(--bg) 45%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
  z-index: -3;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  filter: blur(90px);
  z-index: -2;
  opacity: 0.55;
  pointer-events: none;
}

.bg-orb--one {
  left: -110px;
  top: -90px;
  background: #0891b2;
}

.bg-orb--two {
  right: -120px;
  bottom: -120px;
  background: #7c3aed;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 22, 0.45);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 1px;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.nav-links-cta {
  display: none;
}

.nav-links-cta-btn {
  display: inline-flex;
  text-decoration: none;
  color: #02111d;
  background: linear-gradient(120deg, #4cc9ff, #38bdf8);
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
  font-weight: 700;
  justify-content: center;
}

.nav-cta {
  text-decoration: none;
  color: var(--primary);
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.1);
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.08);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #cbeaff;
  border-radius: 999px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 5.2rem 0 4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-content {
  display: grid;
  gap: 1.15rem;
}

.hero-eyebrow {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
}

.hero-title {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.hero-description {
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 0.86rem 1.2rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  color: #02111d;
  background: linear-gradient(120deg, #4cc9ff, #38bdf8);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(148, 163, 184, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(56, 189, 248, 0.6);
}

.hero-stats {
  margin-top: 0.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(11, 18, 40, 0.72);
}

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

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

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: linear-gradient(
    150deg,
    rgba(56, 189, 248, 0.24),
    rgba(124, 58, 237, 0.2)
  );
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
}

.floating-badge {
  position: absolute;
  background: rgba(5, 8, 22, 0.82);
  border: 1px solid rgba(56, 189, 248, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.55rem 0.8rem;
}

.floating-badge--one {
  top: 18px;
  left: -28px;
}

.floating-badge--two {
  bottom: 26px;
  right: -24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.neon-border {
  position: relative;
  isolation: isolate;
  --border-angle: 0deg;
  --bg-shift: 0%;
}

.neon-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(
      125deg,
      rgba(56, 189, 248, 0.12),
      rgba(124, 58, 237, 0.08),
      rgba(56, 189, 248, 0.12)
    ),
    conic-gradient(
      from var(--border-angle),
      transparent 0deg,
      transparent 210deg,
      rgba(56, 189, 248, 0.95) 260deg,
      #ffffff 286deg,
      rgba(56, 189, 248, 0.95) 312deg,
      transparent 360deg
    );
  background-size:
    220% 220%,
    100% 100%;
  background-position:
    var(--bg-shift) 50%,
    center;
  pointer-events: none;
  z-index: 1;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.35));
  transition:
    filter 0.22s ease,
    background-size 0.22s ease;
}

.neon-border:hover::before {
  background-size:
    280% 280%,
    100% 100%;
  filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.6))
    drop-shadow(0 0 28px rgba(56, 189, 248, 0.4));
}

body.neon-extreme .neon-border::before {
  background:
    linear-gradient(
      120deg,
      rgba(56, 189, 248, 0.26),
      rgba(99, 102, 241, 0.18),
      rgba(124, 58, 237, 0.16),
      rgba(56, 189, 248, 0.26)
    ),
    conic-gradient(
      from var(--border-angle),
      transparent 0deg,
      transparent 160deg,
      rgba(56, 189, 248, 1) 215deg,
      #ffffff 250deg,
      rgba(142, 223, 255, 1) 286deg,
      rgba(56, 189, 248, 1) 322deg,
      transparent 360deg
    );
  background-size:
    270% 270%,
    100% 100%;
  filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.65))
    drop-shadow(0 0 32px rgba(56, 189, 248, 0.48));
}

body.neon-extreme .neon-border:hover::before {
  background-size:
    340% 340%,
    100% 100%;
  filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.85))
    drop-shadow(0 0 40px rgba(56, 189, 248, 0.6));
}

.neon-border > * {
  position: relative;
  z-index: 2;
}

.about-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.about {
  padding: 1rem 0 5rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
  align-items: start;
}

.section-label {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title {
  margin-top: 0.7rem;
  font-size: clamp(1.6rem, 3.8vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -1px;
}

.about-content {
  display: grid;
  gap: 0.85rem;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11, 18, 40, 0.72);
  padding: 1.05rem 1.15rem;
}

.about-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.skills-panel {
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  background: linear-gradient(
    165deg,
    rgba(11, 18, 40, 0.95),
    rgba(5, 8, 22, 0.9)
  );
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.skills-panel h3 {
  margin-bottom: 0.95rem;
  font-size: 1.08rem;
}

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

.skill-item {
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(56, 189, 248, 0.08);
  border-radius: 12px;
  padding: 0.72rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-item span {
  display: inline-flex;
  width: 22px;
  justify-content: center;
}

.projects {
  padding: 1rem 0 6rem;
}

.projects-intro {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.7;
}

.projects-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(11, 18, 40, 0.75);
  border: 1px solid var(--line);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.project-card.neon-border::before {
  inset: -1.25px;
  padding: 1.35px;
  z-index: 4;
  background:
    linear-gradient(
      125deg,
      rgba(56, 189, 248, 0.2),
      rgba(124, 58, 237, 0.12),
      rgba(56, 189, 248, 0.2)
    ),
    conic-gradient(
      from var(--border-angle),
      transparent 0deg,
      transparent 180deg,
      rgba(56, 189, 248, 0.98) 235deg,
      #ffffff 270deg,
      rgba(56, 189, 248, 1) 308deg,
      transparent 360deg
    );
  filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.52))
    drop-shadow(0 0 26px rgba(56, 189, 248, 0.34));
}

body.neon-extreme .project-card.neon-border::before {
  inset: -1.6px;
  padding: 1.6px;
  background:
    linear-gradient(
      120deg,
      rgba(56, 189, 248, 0.34),
      rgba(147, 51, 234, 0.2),
      rgba(56, 189, 248, 0.34)
    ),
    conic-gradient(
      from var(--border-angle),
      transparent 0deg,
      transparent 145deg,
      rgba(56, 189, 248, 1) 205deg,
      #ffffff 244deg,
      rgba(142, 223, 255, 1) 284deg,
      rgba(56, 189, 248, 1) 324deg,
      transparent 360deg
    );
  filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.82))
    drop-shadow(0 0 40px rgba(56, 189, 248, 0.56));
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.35);
}

.project-card.is-touch-active {
  transform: translateY(-8px);
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.35);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    540px circle at var(--mx, 50%) var(--my, 50%),
    rgba(56, 189, 248, 0.18),
    rgba(56, 189, 248, 0) 45%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.project-card:hover::after {
  opacity: 1;
}

.project-card.is-touch-active::after {
  opacity: 1;
}

.project-card > * {
  position: relative;
  z-index: 3;
}

.project-thumb {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.project-thumb img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.project-body {
  padding: 1rem 1rem 1.15rem;
}

.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--primary);
  margin-bottom: 0.55rem;
  transition:
    color 0.28s ease,
    text-shadow 0.28s ease;
}

.project-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: color 0.28s ease;
}

.project-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  transition: color 0.28s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.07);
}

.project-card.is-touch-active .project-thumb img {
  transform: scale(1.07);
}

.project-card:hover .project-tag {
  color: #8edfff;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.55);
}

.project-card.is-touch-active .project-tag {
  color: #8edfff;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.55);
}

.project-card:hover .project-body h3 {
  color: #cfeeff;
}

.project-card.is-touch-active .project-body h3 {
  color: #cfeeff;
}

.project-card:hover .project-body p {
  color: #c3d4f7;
}

.project-card.is-touch-active .project-body p {
  color: #c3d4f7;
}

.project-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.trust {
  padding: 0.5rem 0 6rem;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.why-list {
  list-style: none;
  margin-top: 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.why-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11, 18, 40, 0.74);
  padding: 0.95rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.why-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 1rem;
}

.why-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.6;
}

.testi-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.testi-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11, 18, 40, 0.74);
  padding: 1rem;
}

.testi-card p {
  color: #d7e7ff;
  line-height: 1.65;
  font-size: 0.92rem;
}

.testi-meta {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.1rem;
}

.testi-meta strong {
  font-size: 0.93rem;
}

.testi-meta span {
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.cta-social {
  padding: 0.5rem 0 0;
}

.cta-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(
    165deg,
    rgba(11, 18, 40, 0.95),
    rgba(5, 8, 22, 0.92)
  );
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-description {
  margin-top: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 65ch;
  margin-inline: auto;
}

.cta-social-links {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.cta-social-link {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 18, 40, 0.72);
  padding: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.cta-social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(1);
}

.cta-social-link:hover {
  transform: translateY(-4px);
}

.cta-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.ai-agent {
  padding: 1rem 0 0;
}

.ai-agent-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(
    165deg,
    rgba(11, 18, 40, 0.95),
    rgba(5, 8, 22, 0.92)
  );
  padding: 2rem;
  box-shadow: var(--shadow);
}

.ai-agent-form {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.ai-agent-form input {
  width: 100%;
  border: 1px solid rgba(56, 189, 248, 0.32);
  background: rgba(11, 18, 40, 0.8);
  color: var(--text);
  border-radius: 12px;
  min-height: 46px;
  padding: 0.75rem 0.95rem;
  outline: none;
}

.ai-agent-form input:focus {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

.ai-agent-form button {
  border: 0;
  min-height: 46px;
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  color: #02111d;
  background: linear-gradient(120deg, #4cc9ff, #38bdf8);
  font-weight: 700;
  cursor: pointer;
}

#aiResponse {
  margin-top: 0.9rem;
  color: #d9ecff;
  line-height: 1.65;
  min-height: 1.6em;
}

.ai-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.footer {
  margin-top: 6rem;
  padding: 4rem 0 2rem;
  background: rgba(11, 18, 40, 0.45);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 32ch;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: 0.3s ease;
  filter: invert(1);
}

.social-icons a:hover img {
  opacity: 1;
  transform: translateY(-4px);
  filter: invert(1) drop-shadow(0 0 8px var(--primary));
}

.footer-seo {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding-top: 1.4rem;
}

.footer-seo-title {
  font-size: 0.82rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.footer-seo-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-seo-list li {
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.09);
  color: #d9ecff;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  line-height: 1.4;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav {
    min-height: 74px;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, 92vw);
    padding: 0.9rem;
    background: rgba(5, 8, 22, 0.94);
    border: 1px solid rgba(56, 189, 248, 0.24);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    display: block;
    padding: 0.72rem 0.82rem;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(56, 189, 248, 0.12);
    text-shadow: none;
  }

  .nav-links-cta {
    display: block;
    margin-top: 0.2rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-image-wrap img {
    height: 460px;
  }

  .floating-badge--one {
    left: 10px;
  }

  .floating-badge--two {
    right: 10px;
  }

  .about {
    padding-top: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .projects {
    padding-top: 0;
  }

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

  .trust {
    padding-top: 0;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .cta-social-links {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .ai-agent-form {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-seo-title {
    text-align: center;
  }

  .footer-seo-list {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 70px;
  }

  .logo span {
    font-size: 0.92rem;
  }

  .nav-links {
    width: min(300px, 92vw);
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .hero-image-wrap img {
    height: 400px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-thumb img {
    height: 210px;
  }

  .cta-card {
    padding: 1.4rem 1rem;
  }

  .ai-agent-card {
    padding: 1.4rem 1rem;
  }

  .why-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .project-card {
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  .project-card::after {
    opacity: 0.85;
    background: radial-gradient(
      380px circle at 50% 50%,
      rgba(56, 189, 248, 0.14),
      rgba(56, 189, 248, 0) 55%
    );
  }
}
