:root {
  --black: #0b0b0b;
  --black-soft: #101214;
  --neon: #53eafd;
  --blue: #0498d3;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.055);
  --border: rgba(83, 234, 253, 0.22);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  --glow: 0 0 34px rgba(83, 234, 253, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 10%, rgba(83, 234, 253, 0.16), transparent 30rem),
    radial-gradient(circle at 15% 22%, rgba(4, 152, 211, 0.12), transparent 28rem),
    var(--black);
  color: var(--white);
  font-family: "Poppins", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(83, 234, 253, 0.05), transparent 22%, rgba(255, 255, 255, 0.025) 52%, transparent 78%);
  z-index: -2;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.cursor-glow {
  position: fixed;
  width: 23rem;
  height: 23rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 234, 253, 0.13), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.72);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--neon);
  background: linear-gradient(145deg, rgba(83, 234, 253, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow: var(--glow);
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a,
.footer-links a {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--neon);
  text-shadow: 0 0 16px rgba(83, 234, 253, 0.5);
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(83, 234, 253, 0.4);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(83, 234, 253, 0.08);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: 48px;
  padding: 140px 0 70px;
}

.hero-bg-grid {
  position: absolute;
  inset: 16% -18% auto auto;
  width: 50rem;
  height: 34rem;
  background:
    linear-gradient(rgba(83, 234, 253, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 234, 253, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(700px) rotateX(58deg) rotateZ(-12deg);
  filter: drop-shadow(0 0 40px rgba(83, 234, 253, 0.18));
  opacity: 0.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--neon);
  font: 700 0.78rem "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--neon);
  box-shadow: var(--glow);
}

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

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: 0.9;
  font-weight: 800;
}

.hero-content p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

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

.btn-primary {
  color: #041114;
  background: linear-gradient(135deg, var(--neon), #a7f7ff 48%, var(--blue));
  box-shadow: 0 18px 46px rgba(83, 234, 253, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.trust-row {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.dashboard-mockup,
.service-card,
.portfolio-card,
.logo-mockup,
.cinematic-carousel,
.social-card,
.testimonial,
.stats-panel,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-card {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(440px, 100%);
  transform: translate(-50%, -50%) rotate(-3deg);
  border-radius: 24px;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.mockup-top,
.site-browser {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-top span,
.site-browser span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(83, 234, 253, 0.65);
}

.mockup-body {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 16px;
  padding: 18px;
}

.metric-panel,
.preview-panel,
.phone-mockup {
  border: 1px solid rgba(83, 234, 253, 0.16);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
}

.metric-panel {
  grid-column: 1 / -1;
  padding: 18px;
}

.metric-panel small,
.portfolio-card span,
.mock-label,
.social-card span,
.testimonial span {
  color: var(--muted);
}

.metric-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--neon);
  font: 800 2.6rem "Montserrat", sans-serif;
}

.bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--neon));
  box-shadow: var(--glow);
}

.preview-panel {
  padding: 14px;
}

.preview-hero {
  height: 86px;
  border-radius: 13px;
  background: radial-gradient(circle at 30% 25%, var(--neon), transparent 32%), linear-gradient(135deg, rgba(4, 152, 211, 0.55), rgba(255, 255, 255, 0.08));
}

.preview-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.preview-lines span,
.phone-mockup span,
.paper-sheet span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.phone-mockup {
  padding: 14px;
}

.phone-mockup div {
  height: 110px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(83, 234, 253, 0.88), rgba(4, 152, 211, 0.22) 52%, rgba(255, 255, 255, 0.08));
}

.orbit-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(83, 234, 253, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 40px rgba(83, 234, 253, 0.08), var(--glow);
}

.ring-one {
  width: 520px;
  height: 520px;
}

.ring-two {
  width: 380px;
  height: 380px;
  animation: spin 18s linear infinite;
}

.status-chip {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(11, 11, 11, 0.78);
  box-shadow: var(--glow);
  backdrop-filter: blur(14px);
}

.chip-one {
  top: 18%;
  right: 5%;
}

.chip-two {
  bottom: 18%;
  left: 3%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.gallery-title h2,
.final-cta h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
}

.section-heading p,
.final-cta p {
  color: var(--muted);
  line-height: 1.8;
}

.services,
.portfolio,
.gallery-intro,
.why,
.results,
.testimonials,
.final-cta {
  padding: 96px 0;
}

.service-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 238px;
  padding: 28px;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card::after,
.logo-mockup::after,
.social-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-card:hover,
.portfolio-card:hover,
.logo-mockup:hover,
.social-card:hover,
.testimonial:hover {
  transform: translateY(-7px);
  border-color: rgba(83, 234, 253, 0.36);
  box-shadow: 0 26px 90px rgba(4, 152, 211, 0.15);
}

.service-card:hover::after,
.logo-mockup:hover::after,
.social-card:hover::after {
  opacity: 1;
}

.service-card svg,
.why-item svg {
  width: 28px;
  height: 28px;
  color: var(--neon);
  filter: drop-shadow(0 0 12px rgba(83, 234, 253, 0.55));
}

.service-card h3 {
  margin: 28px 0 12px;
  font-size: 1.32rem;
}

.service-card p,
.portfolio-card h3,
.testimonial p {
  color: var(--muted);
  line-height: 1.7;
}

.portfolio-showcase {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.portfolio-card {
  min-height: 330px;
  padding: 20px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.portfolio-card.large {
  grid-row: span 2;
}

.site-preview,
.logo-stage,
.creative-stack {
  min-height: 235px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(83, 234, 253, 0.14);
}

.site-screen {
  height: 275px;
  margin: 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 74% 20%, rgba(83, 234, 253, 0.5), transparent 14%),
    linear-gradient(135deg, rgba(4, 152, 211, 0.38), rgba(255, 255, 255, 0.06));
  padding: 32px;
}

.site-screen div {
  width: 55%;
  height: 74px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.site-screen span {
  display: block;
  width: 82%;
  height: 10px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.logo-stage,
.creative-stack {
  display: grid;
  place-items: center;
}

.logo-stage strong {
  color: var(--neon);
  font: 800 2.4rem "Montserrat", sans-serif;
  text-shadow: 0 0 24px rgba(83, 234, 253, 0.42);
}

.logo-stage span {
  display: block;
  margin-top: -64px;
}

.creative-stack {
  position: relative;
}

.creative-stack div {
  position: absolute;
  width: 44%;
  height: 62%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(145deg, rgba(83, 234, 253, 0.45), rgba(255, 255, 255, 0.06));
}

.creative-stack div:nth-child(1) {
  transform: translateX(-42px) rotate(-11deg);
}

.creative-stack div:nth-child(2) {
  transform: translateX(12px) rotate(2deg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(4, 152, 211, 0.38));
}

.creative-stack div:nth-child(3) {
  transform: translateX(58px) rotate(12deg);
}

.gallery-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 90px;
}

.gallery-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.gallery-title span {
  color: var(--neon);
  font: 800 0.9rem "Montserrat", sans-serif;
}

.gallery-title h2 {
  flex: 1;
  margin: 0;
}

.text-link {
  color: var(--neon);
  font-weight: 700;
  white-space: nowrap;
}

.logo-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.logo-mockup {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card-business {
  grid-row: span 2;
}

.business-card,
.facade-sign,
.screen-logo,
.paper-sheet {
  position: absolute;
  inset: 58px 22px 22px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(83, 234, 253, 0.22);
  background: linear-gradient(145deg, rgba(83, 234, 253, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 70px rgba(83, 234, 253, 0.08);
  transition: transform 0.35s ease;
}

.logo-mockup:hover .business-card,
.logo-mockup:hover .facade-sign,
.logo-mockup:hover .screen-logo,
.logo-mockup:hover .paper-sheet {
  transform: scale(1.025);
}

.business-card {
  transform: rotate(-5deg);
}

.business-card strong,
.facade-sign,
.screen-logo,
.paper-sheet strong {
  color: var(--white);
  font: 800 2.1rem "Montserrat", sans-serif;
  text-shadow: 0 0 25px rgba(83, 234, 253, 0.44);
}

.business-card span {
  margin-top: -96px;
  color: var(--neon);
}

.facade {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.05) 18% 19%, transparent 19% 38%, rgba(255, 255, 255, 0.05) 38% 39%, transparent 39%);
}

.paper-sheet {
  place-items: start;
  padding: 28px;
}

.paper-sheet span {
  width: 86%;
  margin-top: 16px;
}

.cinematic-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px;
}

.carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: carousel 24s linear infinite;
}

.cinematic-carousel:hover .carousel-track {
  animation-play-state: paused;
}

.website-slide {
  position: relative;
  width: min(680px, calc(100vw - 72px));
  min-height: 440px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 18%, rgba(83, 234, 253, 0.16), transparent 22rem),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(83, 234, 253, 0.16);
}

.website-slide h3 {
  margin: 22px 0 0;
}

.laptop {
  width: 82%;
  height: 310px;
  border: 10px solid #16191c;
  border-bottom-width: 22px;
  border-radius: 20px;
  background: #050505;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.laptop-screen,
.mobile-device {
  overflow: hidden;
}

.scroll-preview {
  height: 580px;
  background-size: 100% 100%;
  animation: pageScroll 8s ease-in-out infinite;
}

.scroll-preview.one {
  background-image:
    linear-gradient(180deg, rgba(83, 234, 253, 0.32) 0 21%, transparent 21% 26%, rgba(255, 255, 255, 0.12) 26% 30%, transparent 30% 38%, rgba(4, 152, 211, 0.26) 38% 56%, transparent 56% 62%, rgba(255, 255, 255, 0.1) 62% 76%, transparent 76%),
    linear-gradient(135deg, #091013, #0b0b0b);
}

.scroll-preview.two {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0 15%, transparent 15% 22%, rgba(83, 234, 253, 0.28) 22% 44%, transparent 44% 52%, rgba(255, 255, 255, 0.1) 52% 70%, transparent 70%),
    linear-gradient(135deg, #0b0b0b, #06212c);
}

.scroll-preview.three {
  background-image:
    linear-gradient(180deg, rgba(4, 152, 211, 0.33) 0 26%, transparent 26% 34%, rgba(255, 255, 255, 0.1) 34% 50%, transparent 50% 58%, rgba(83, 234, 253, 0.22) 58% 84%, transparent 84%),
    linear-gradient(135deg, #050505, #101214);
}

.mobile-device {
  position: absolute;
  right: 28px;
  bottom: 72px;
  width: 118px;
  height: 225px;
  border: 8px solid #171b1f;
  border-radius: 24px;
  background: #050505;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 18px;
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 22%, rgba(83, 234, 253, 0.56), transparent 28%),
    linear-gradient(145deg, rgba(4, 152, 211, 0.46), rgba(255, 255, 255, 0.07));
  opacity: 0.72;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.social-card:hover::before {
  transform: scale(1.04);
  opacity: 1;
}

.social-card strong,
.social-card span {
  position: relative;
  z-index: 1;
}

.social-card strong {
  font: 800 1.35rem "Montserrat", sans-serif;
}

.social-card.tall {
  grid-row: span 2;
}

.social-card.wide {
  grid-column: span 2;
}

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

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: 700 1.18rem "Montserrat", sans-serif;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  padding: 1px;
}

.stat {
  padding: 42px 24px;
  background: rgba(0, 0, 0, 0.28);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--neon);
  font: 800 clamp(2.4rem, 5vw, 4.2rem) "Montserrat", sans-serif;
  text-shadow: var(--glow);
}

.stat:nth-child(4) strong::after {
  content: "%";
}

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

.testimonial-grid {
  align-items: stretch;
}

.testimonial {
  padding: 28px;
  border-radius: 24px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.stars {
  color: var(--neon);
  margin-bottom: 18px;
  text-shadow: var(--glow);
}

.testimonial strong {
  display: block;
  margin-top: 20px;
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 430px;
  margin-bottom: 80px;
  padding: 54px 24px;
  border-radius: 32px;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 234, 253, 0.18), transparent 68%);
  z-index: -1;
}

.final-cta p {
  max-width: 620px;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-3deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-3deg) translateY(-16px);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes carousel {
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@keyframes pageScroll {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-44%);
  }
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 126px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .service-grid,
  .testimonial-grid,
  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-showcase,
  .logo-gallery-grid,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card.large,
  .card-business,
  .social-card.tall,
  .social-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .hero,
  .services,
  .portfolio,
  .gallery-intro,
  .why,
  .results,
  .testimonials,
  .final-cta {
    padding: 72px 0;
  }

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

  .floating-card {
    width: 94%;
  }

  .ring-one {
    width: 350px;
    height: 350px;
  }

  .ring-two {
    width: 270px;
    height: 270px;
  }

  .chip-one {
    right: 0;
    top: 8%;
  }

  .chip-two {
    left: 0;
    bottom: 8%;
  }

  .service-grid,
  .portfolio-showcase,
  .logo-gallery-grid,
  .social-grid,
  .why-grid,
  .testimonial-grid,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .logo-gallery-grid,
  .social-grid {
    grid-auto-rows: 240px;
  }

  .gallery-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link {
    white-space: normal;
  }

  .website-slide {
    min-height: 370px;
    padding: 16px;
  }

  .laptop {
    width: 100%;
    height: 245px;
  }

  .mobile-device {
    right: 18px;
    bottom: 62px;
    width: 88px;
    height: 166px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
