:root {
  --blue-900: #1a237e;
  --blue-800: #1f2aa5;
  --blue-700: #2630e8;
  --blue-600: #2f4bff;
  --blue-500: #3a6cff;
  --blue-400: #4a86ff;
  --blue-300: #6aa2ff;
  --ink-900: #0f1633;
  --ink-700: #1f2a44;
  --ink-500: #4b5c80;
  --white: #ffffff;
  --yellow: #ffd83d;
}

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

body {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  background: #202b6b;
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-layers {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  opacity: 0;
}

.pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08) 0 45%, transparent 46%) 0 0 / 220px 220px,
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0 45%, transparent 46%) 50px 50px / 220px 220px;
  opacity: 0.5;
}

.glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 140, 255, 0.45), transparent 70%);
  top: -20vw;
  right: -10vw;
  filter: blur(10px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 8vw;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(19, 23, 58, 0.25);
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  display: inline-block;
  width: 28px;
  height: 16px;
  background: linear-gradient(120deg, #ffffff 0%, #b8d0ff 100%);
  border-radius: 999px;
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #2f4bff;
  border-radius: 50%;
  right: -6px;
  top: 1px;
}

/* Logo image style */
.site-logo {
  display: inline-block;
  width: 240px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-logo {
    width: 180px;
  }
}

@media (max-width: 600px) {
  .site-logo {
    width: 140px;
  }
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

/* No opacity change on hover; underline animation handles hover state */

.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #ffd83d;
}

/* Yellow hover animation for nav links */
.nav a {
  position: relative;
  transition: color 220ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 70%;
  height: 4px;
  background: var(--yellow);
  border-radius: 99px;
  box-shadow: 0 8px 24px rgba(255, 216, 61, 0.18);
  transition: transform 260ms cubic-bezier(.2,.9,.3,1);
}

.nav a:hover,
.nav a:focus {
  color: inherit;
}

/* Active nav item (current page) */
.nav a.active {
  color: var(--yellow);
}

.nav a.active::after {
  transform: translateX(-50%) scaleX(1);
  box-shadow: 0 10px 30px rgba(255, 216, 61, 0.25);
}

.nav a:hover::after,
.nav a:focus::after {
  transform: translateX(-50%) scaleX(1);
}

/* Menu button hover: subtle lift + lemon glow */
.menu-btn span {
  transition: transform 200ms ease, filter 200ms ease, background-color 200ms ease;
}

.menu-btn:hover span:nth-child(1) {
  transform: translateY(-3px) scaleX(1.06);
}

.menu-btn:hover span:nth-child(2) {
  transform: translateY(0px) scaleX(1.06);
}

.menu-btn:hover span:nth-child(3) {
  transform: translateY(3px) scaleX(1.06);
}

.menu-btn:hover span {
  background: var(--yellow);
  filter: drop-shadow(0 10px 30px rgba(255, 216, 61, 0.18));
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 8vw 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
}

.hero-left h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 700;
  color: #c5d7ff;
}

.hero-sub {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #d2dcff;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #7ea2ff;
}

.dot.active {
  background: #ffd83d;
  border-color: #ffd83d;
}

.hero-right {
  display: flex;
  justify-content: center;
}

/* Szürke háttér panel a hero-kártya mögé */
.hero-right {
  position: relative;
}

.hero-right::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: calc(100% + 70px);
  height: calc(100% + 70px);
  background: rgba(25, 30, 72, 0.85);
  border-radius: 38px;
  z-index: 0;
  box-shadow: 0 26px 60px rgba(6, 10, 34, 0.55);
}

.hero-showcase {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 32px 36px 44px;
  border-radius: 36px;
  background: radial-gradient(circle at top left, rgba(86, 129, 255, 0.55), rgba(33, 53, 133, 0.92));
  box-shadow: 0 36px 70px rgba(9, 13, 38, 0.6);
  overflow: visible;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.45;
  pointer-events: none;
}

.showcase-browser {
  position: relative;
  background: rgba(15, 20, 58, 0.92);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(12, 15, 40, 0.9), rgba(33, 40, 86, 0.9));
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.browser-dot--red {
  background: #ff6b6b;
}

.browser-dot--amber {
  background: #ffd654;
}

.browser-dot--green {
  background: #50e3a4;
}

.browser-url {
  margin-left: auto;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}

.browser-body {
  padding: 26px 26px 30px;
  background: linear-gradient(180deg, rgba(22, 29, 72, 0.9), rgba(11, 16, 46, 0.92));
}

.browser-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.browser-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.05);
  color: #e6edff;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 24px 40px rgba(8, 12, 36, 0.28);
}

.browser-card--primary {
  background: linear-gradient(160deg, rgba(255, 216, 61, 0.2), rgba(86, 129, 255, 0.2));
}

.browser-card--gallery {
  backdrop-filter: blur(6px);
}

.browser-card h4 {
  font-size: 1.8rem;
  color: #ffd83d;
}

.browser-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.browser-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.browser-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(230, 237, 255, 0.85);
}

.hero-floating {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(15, 22, 64, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f7f9ff;
  font-size: 0.8rem;
  box-shadow: 0 20px 40px rgba(5, 8, 24, 0.45);
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-floating + .hero-floating {
  margin-top: 16px;
}

.hero-floating strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero-floating--speed {
  top: -32px;
  right: -18px;
  animation-delay: -1.2s;
}

.hero-floating--seo {
  bottom: -30px;
  left: -6px;
  animation-delay: -3.2s;
}

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

.section {
  padding: 80px 8vw 40px;
  scroll-margin-top: 100px;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.contact-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(42, 57, 140, 0.85));
  border-radius: 28px;
  padding: 40px 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 70px rgba(6, 10, 42, 0.55);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.35;
  pointer-events: none;
}

.contact-copy-text {
  max-width: 520px;
  z-index: 1;
}

.contact-copy-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
}

.contact-copy-text p {
  margin-top: 12px;
  font-size: 1.05rem;
  color: #e1e8ff;
}

.contact-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.contact-mail,
.contact-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.contact-mail {
  background: var(--yellow);
  color: #0f1633;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(255, 216, 61, 0.25);
}

.contact-mail:hover,
.contact-mail:focus {
  transform: translateY(-4px);
  filter: brightness(0.98);
  box-shadow: 0 24px 46px rgba(255, 216, 61, 0.3);
}

.contact-copy {
  background: transparent;
  color: #f2f4ff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(9, 13, 38, 0.35);
}

.contact-copy:hover,
.contact-copy:focus {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(6, 10, 34, 0.5);
}

.contact-feedback {
  min-height: 1.2rem;
  font-size: 0.85rem;
  color: #ffd83d;
  align-self: center;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

  .contact-card {
    padding: 36px;
  }
.section-title p {
  margin-top: 12px;
  color: #cfd8ff;
}

.cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* References grid: image cards with links beside images */
.references-grid {
  margin-top: 38px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.reference-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(15, 22, 51, 0.45) 45%, rgba(10, 16, 46, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 44px rgba(10, 13, 38, 0.36);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  overflow: hidden;
  z-index: 0;
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 216, 61, 0.15), rgba(141, 176, 255, 0.08));
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
  z-index: -1;
}

.reference-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 60px rgba(9, 12, 32, 0.45);
}

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

.ref-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(15, 22, 51, 0.24);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ref-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(15, 22, 51, 0) 60%);
  opacity: 0.18;
  pointer-events: none;
}

.ref-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.28s ease;
}

.reference-card:hover .ref-img {
  transform: scale(1.04);
}

.ref-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
}

.ref-content h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.ref-content p {
  color: #c7d5ff;
  font-size: 0.98rem;
  line-height: 1.45;
  opacity: 0.92;
}

/* Button replacing description in reference cards */
.ref-btn {
  display: inline-block;
  margin-top: auto;
  padding: 10px 14px;
  background: var(--yellow);
  color: #0f1633;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 216, 61, 0.14);
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), box-shadow 220ms cubic-bezier(.2,.9,.3,1), filter 220ms ease;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.ref-btn:hover,
.ref-btn:focus {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 36px rgba(255, 216, 61, 0.22);
  filter: brightness(0.98);
  outline: none;
}

.ref-btn:focus-visible {
  box-shadow: 0 0 0 6px rgba(255, 216, 61, 0.12), 0 18px 36px rgba(255, 216, 61, 0.22);
}

/* Ensure visited/active buttons still show smooth animation */
.ref-btn:visited {
  color: #0f1633;
  /* background-image/gradient avoided to satisfy privacy restrictions in some browsers */
}

.ref-btn:active {
  transform: translateY(-3px) scale(0.995);
  box-shadow: 0 12px 26px rgba(255, 216, 61, 0.18);
  transition: transform 120ms cubic-bezier(.2,.9,.3,1), box-shadow 120ms ease;
}

/* Improve rendering performance for transforms */
.ref-btn {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

@media (max-width: 900px) {
  .reference-card {
    padding: 28px;
    gap: 20px;
  }
  .ref-img-wrap {
    border-radius: 18px;
  }
  .ref-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .references-grid {
    gap: 26px;
  }
  .reference-card {
    padding: 26px;
  }
  .ref-content h3 {
    font-size: 1.15rem;
  }
}

.card {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08) 0 45%, transparent 46%) 0 0 / 220px 220px,
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0 45%, transparent 46%) 50px 50px / 220px 220px,
    radial-gradient(circle at top left, #3047ff, #2733f5 40%, #1c25a3 100%);
  border-radius: 20px;
  padding: 24px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(9, 12, 32, 0.35);
}

.steps {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step {
  background:
  gap: 20px;
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0 45%, transparent 46%) 50px 50px / 220px 220px,
    radial-gradient(circle at top left, #3047ff, #2733f5 40%, #1c25a3 100%);

/* Szürke panel a lépések mögött, elkülönített kártya-sáv */
.steps {
  background: #2f3338;
  padding: 20px;
  border-radius: 16px;
}

/* Szürke panel a pricing grid mögött, hogy a kártyák kiemelkedjenek */
.pricing-grid {
  background: #2f3338;
  padding: 20px;
  border-radius: 16px;
}
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  font-weight: 700;
  color: #ffd83d;
  font-size: 1.2rem;
}

.step h3 {
  margin-top: 12px;
  font-size: 1.4rem;
}

.step p {
  margin-top: 8px;
  color: #c7d2ff;
}

.pricing-wrap {
  position: relative;
  margin-top: 24px;
}

.pricing-wrap::before {
  content: none;
}

.pricing-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.price-card {
  background: rgba(15, 22, 51, 0.78);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.price-card.highlight {
  border: 1px solid rgba(255, 216, 61, 0.22);
  box-shadow: 0 18px 36px rgba(18, 28, 70, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 22, 51, 0.78));
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(5, 10, 34, 0.35);
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffd83d;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #c7d2ff;
}

.price-card ul li::before {
  content: "• ";
  color: #ffd83d;
}

.price-card button {
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  background: #ffd83d;
  color: #1a1f3d;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.price-card button:hover {
  transform: translateY(-3px);
}

.site-footer {
  padding: 40px 8vw 60px;
  text-align: center;
  color: #d2dcff;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobil menü stílus */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms ease, visibility 350ms ease;
  z-index: 11;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: linear-gradient(135deg, #1a2354 0%, #202b6b 100%);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  z-index: 12;
  
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  
  transform: translateX(100%);
  transition: transform 350ms ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
  margin-bottom: 24px;
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.mobile-menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-link {
  padding: 16px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 200ms ease;
  display: block;
  text-align: left;
}

.mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.mobile-menu-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

@media (max-width: 900px) {
  .site-header {
    padding: 24px 6vw;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-showcase {
    width: 100%;
    padding: 28px 28px 38px;
    border-radius: 32px;
  }

  .hero-showcase::after {
    inset: 16px;
  }

  .hero-right::before {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    transform: translate(-50%, -50%) rotate(-2deg);
  }

  .hero-floating--speed {
    top: -26px;
    right: 8px;
  }

  .hero-floating--seo {
    bottom: -26px;
    left: 12px;
  }
}

@media (max-width: 600px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-right::before {
    display: none;
  }

  .hero-showcase {
    padding: 24px 20px 30px;
    border-radius: 28px;
  }

  .hero-showcase::after {
    inset: 14px;
    border-radius: 22px;
  }

  .browser-body {
    padding: 20px;
  }

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

  .hero-floating {
    position: static;
    margin-top: 18px;
    animation: none;
    align-self: flex-start;
  }
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 32px 24px;
  }

  .contact-card::after {
    inset: 16px;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .contact-mail,
  .contact-copy {
    width: 100%;
    justify-content: center;
  }
}
