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

/* Search-visible FAQ content and FAQPage schema share the same source text. */
.seo-faq {
  width: min(1180px, calc(100% - 40px));
  margin: 38px auto;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 44px;
  border: 1px solid #dfe5f3;
  border-radius: 18px;
  background: #fff;
}

.seo-faq-heading > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #315cff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-faq-heading h2 {
  margin: 0 0 12px;
  color: #071936;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
}

.seo-faq-heading p {
  margin: 0;
  color: #5a6880;
  font-size: 15px;
  line-height: 1.7;
}

.seo-faq-list {
  border-top: 1px solid #dfe5f3;
}

.seo-faq details {
  border-bottom: 1px solid #dfe5f3;
}

.seo-faq summary {
  position: relative;
  padding: 19px 42px 19px 0;
  color: #0b1d3d;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #cfd8ec;
  border-radius: 50%;
  color: #315cff;
  font-size: 18px;
  font-weight: 500;
  transform: translateY(-50%);
}

.seo-faq details[open] summary::after {
  content: "−";
}

.seo-faq details p {
  max-width: 760px;
  margin: -2px 42px 18px 0;
  color: #5a6880;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .seo-faq {
    width: 100%;
    margin: 24px 0;
    padding: 26px 18px;
    grid-template-columns: 1fr;
    gap: 22px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .seo-faq-heading {
    text-align: center;
  }

  .seo-faq-heading h2 {
    font-size: 28px;
  }

  .seo-faq-heading p {
    font-size: 13px;
  }

  .seo-faq summary {
    padding: 17px 38px 17px 0;
    font-size: 14px;
  }

  .seo-faq details p {
    margin-right: 32px;
    font-size: 13px;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-x: clip;
}

:root {
  --ink: #06142e;
  --ink-soft: #13264b;
  --blue: #0a66ff;
  --blue-dark: #064bd8;
  --violet: #6b35ff;
  --cyan: #08c8ff;
  --green: #15bd67;
  --gold: #ffb020;
  --paper: #ffffff;
  --muted: #60708b;
  --line: #dfe7f4;
  --bg: #f3f7ff;
  --shadow: none;
}

body {
  background:
    radial-gradient(circle at top left, rgba(10, 102, 255, .10), transparent 32rem),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, #eef4ff 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  cursor: pointer;
}

.topbar {
  min-height: 42px;
  background: linear-gradient(90deg, #063ed2, #6a32f4 52%, #071735);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 24px;
  font-size: 14px;
}

.topbar small {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 5px 12px;
  border-radius: 999px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.header {
  background: rgba(6, 20, 46, .98);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(22px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
  transform: translateZ(0);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.brand h2 {
  font-size: 21px;
  line-height: 1.1;
}

.brand p,
.head-icons {
  color: #bed0f3;
}

.search {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  min-height: 50px;
  z-index: 40;
}

.search select,
.search input {
  border: 0;
  min-width: 0;
  outline: 0;
}

.search select {
  flex: 0 0 80px;
  width: 80px;
  height: 50px;
  padding: 0 12px;
  color: #000;
  border-radius: 0;
  background: #f4f7fc;
  border-right: 1px solid var(--line);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

#google_translate_element,
.goog-te-banner-frame,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.project-brief-toast {
  position: fixed;
  left: 50%;
  top: 146px;
  z-index: 900;
  width: min(860px, calc(100vw - 42px));
  min-height: 82px;
  display: none;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(214, 224, 241, .92);
  border-radius: 13px;
  padding: 18px 42px 18px 38px;
  color: #3d4354;
  background: rgba(255, 255, 255, .96);
  transform: translate(-50%, -18px);
  opacity: 0;
  backdrop-filter: blur(16px);
  transition: opacity .28s ease, transform .28s ease;
}

.project-brief-toast.show {
  display: flex;
  opacity: 1;
  transform: translate(-50%, 0);
}

.project-brief-toast.hide {
  opacity: 0;
  transform: translate(-50%, -18px);
}

.brief-icon {
  position: relative;
  flex: 0 0 28px;
  color: #6976d9;
  font-size: 25px;
}

.brief-icon .fa-wand-magic-sparkles {
  position: absolute;
  right: -6px;
  bottom: -6px;
  font-size: 12px;
  color: #7c3aed;
}

.project-brief-toast p {
  flex: 1;
  margin: 0;
  color: #4e5263;
  font-size: 16px;
  line-height: 1.4;
}

.project-brief-toast b {
  color: #3b3f4e;
  font-weight: 900;
}

.brief-start {
  flex: 0 0 auto;
  min-width: 132px;
  height: 38px;
  border: 1px solid rgba(214, 224, 241, .95);
  border-radius: 999px;
  color: #161a24;
  background: #fff;
  font-weight: 900;
}

.brief-close {
  position: absolute;
  right: 13px;
  top: 12px;
  border: 0;
  color: #8c91a5;
  background: transparent;
  font-size: 15px;
  cursor: pointer;
}

.search input {
  flex: 1;
  height: 50px;
  padding: 0 16px;
  color: var(--ink);
}

.search button {
  width: 62px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
}

.search-results-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  max-height: 420px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid rgba(217, 226, 244, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
}

.search-results-panel.open {
  display: grid;
  gap: 8px;
}

.search-result-item {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px;
  background: #fff;
  color: #071735;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.search-result-item:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, .22);
  background: #f8fbff;
}

.search-result-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.search-result-copy {
  min-width: 0;
}

.search-result-copy b,
.search-result-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-copy b {
  font-size: 14px;
  color: #06142e;
}

.search-result-copy small {
  margin-top: 3px;
  color: #60708b;
  font-size: 12px;
}

.search-result-action {
  border-radius: 999px;
  padding: 7px 10px;
  color: #2563eb;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 900;
}

.search-empty {
  padding: 18px;
  color: #60708b;
  font-size: 13px;
  text-align: center;
}

.search-empty b,
.search-empty span {
  display: block;
}

.head-icons {
  display: flex;
  gap: 20px;
  font-size: 14px;
  white-space: nowrap;
}

.head-icons button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d8e5ff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px;
  padding: 10px 12px;
  font-weight: 800;
}

.head-icons button:hover {
  background: rgba(255, 255, 255, .14);
}

.head-icons b {
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}

.head-icons span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.mobile-menu-btn,
.mobile-menu {
  display: none;
}

.nav {
  min-height: 54px;
  background: #0b1d40;
  color: #dfe8ff;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(22px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav button {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 800;
}

.nav a {
  font-size: 14px;
  opacity: .9;
}

.service-strip {
  position: relative;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 clamp(22px, 5vw, 64px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.service-strip a,
.strip-dropdown-toggle {
  position: relative;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  color: #465166;
  text-decoration: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.strip-dropdown-toggle {
  cursor: pointer;
  font-family: inherit;
}

.service-strip a:hover,
.strip-dropdown:hover .strip-dropdown-toggle,
.strip-dropdown-toggle:focus-visible {
  color: var(--blue);
  background: #f7faff;
}

.service-strip i,
.strip-dropdown-toggle i {
  color: inherit;
  background: transparent;
  font-size: 13px;
}

.service-strip a.active {
  color: var(--ink);
  font-weight: 800;
}

.service-strip a.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.strip-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.strip-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 6px;
  min-width: 290px;
  border: 1px solid rgba(214, 224, 241, .95);
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, .98);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.strip-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(214, 224, 241, .95);
  border-top: 1px solid rgba(214, 224, 241, .95);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.strip-dropdown:hover .strip-dropdown-menu,
.strip-dropdown:focus-within .strip-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Keep the final navigation dropdown inside the viewport. */
.more-dropdown .strip-dropdown-menu {
  right: 0;
  left: auto;
  transform: translateY(8px);
}

.more-dropdown .strip-dropdown-menu::before {
  right: 24px;
  left: auto;
  transform: rotate(45deg);
}

.more-dropdown:hover .strip-dropdown-menu,
.more-dropdown:focus-within .strip-dropdown-menu {
  transform: translateY(0);
}

.strip-dropdown-menu a {
  min-height: auto;
  border-radius: 12px;
  padding: 10px 12px;
  color: #27364e;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 800;
}

.strip-dropdown-menu a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.all-services-menu {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 26px clamp(22px, 5vw, 64px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.all-services-menu.open,
.service-strip:has(.all-items-trigger:hover) + .all-services-menu,
.all-services-menu:hover {
  display: grid;
}

.all-service-group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #f8fbff;
}

.all-service-group h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
}

.all-service-group a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.all-service-group a:hover {
  color: var(--blue);
}

.theme-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  color: var(--ink-soft);
  background: #eef5ff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}

.theme-note i {
  color: #15bd67;
}

.hero-slider {
  position: relative;
  min-height: clamp(560px, 45vw, 700px);
  overflow: hidden;
  background: #06122b;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroSlide 30s infinite;
}

.hero-slide-main {
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(260px, 320px);
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  min-height: 100%;
  padding: clamp(56px, 6vw, 84px) clamp(22px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 34%, rgba(255, 255, 255, .28) 56%, rgba(255, 255, 255, 0) 76%),
    url("Final-Hero.png") center right / cover no-repeat;
  overflow: hidden;
  animation-delay: 0s;
}

.hero-slide-image {
  display: grid;
  align-items: start;
  min-height: 100%;
  padding: clamp(56px, 6vw, 84px) clamp(22px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 34%, rgba(255, 255, 255, .28) 56%, rgba(255, 255, 255, 0) 76%),
    url("Banner.jpg") center right / cover no-repeat;
  animation-delay: 15s;
}

.hero-slider.manual .hero-slide {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

.hero-slider.manual .hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-text,
.hero-slide-main .quote,
.image-slide-text {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 620px;
}

.hero-slide-main .quote {
  width: min(100%, 270px);
  margin-top: 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  transform: scale(.92);
  transform-origin: top right;
}

.hero-slide-main .quote h3 {
  font-size: 18px;
}

.hero-slide-main .quote p {
  font-size: 12px;
  margin-bottom: 8px;
}

.hero-slide-main .quote select,
.hero-slide-main .quote input {
  margin: 7px 0 9px;
  padding: 10px;
  font-size: 13px;
}

.hero-slide-main .quote label,
.hero-slide-main .quote small {
  font-size: 12px;
}

.hero-slide-main .quote button {
  padding: 11px 16px;
  margin-bottom: 9px;
}

.hero-slide-main .quick {
  padding: 10px;
  font-size: 12px;
}

.hero-slide-main {
  color: var(--ink);
}

.hero-slide-main h1 {
  max-width: 720px;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-slide-main h1 span,
.why span {
  color: var(--blue);
}

.hero-slide-main p {
  color: #344767;
  font-size: 20px;
  margin: 18px 0;
}

.image-slide-text {
  max-width: 620px;
}

.image-slide-text h2 {
  color: var(--ink);
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.04;
}

.image-slide-text p {
  max-width: 560px;
  color: var(--muted);
  font-size: 20px;
  margin: 24px 0;
}

.image-slide-text button {
  border: 0;
  border-radius: 12px;
  padding: 15px 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 900;
}

.typing-words {
  position: relative;
  display: block;
  min-height: 1.1em;
  margin-top: 8px;
  color: var(--violet);
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 900;
  line-height: 1.04;
}

.typing-words span {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid var(--violet);
  opacity: 0;
  animation: typingWord 9s steps(22, end) infinite;
}

.typing-words span:nth-child(2) {
  animation-delay: 3s;
}

.typing-words span:nth-child(3) {
  animation-delay: 6s;
}

@keyframes typingWord {
  0% { width: 0; opacity: 1; }
  19% { width: 100%; opacity: 1; }
  27% { width: 100%; opacity: 1; }
  33% { width: 0; opacity: 0; }
  100% { width: 0; opacity: 0; }
}

@keyframes heroSlide {
  0%, 45% { opacity: 1; visibility: visible; }
  50%, 95% { opacity: 0; visibility: hidden; }
  100% { opacity: 1; visibility: visible; }
}

.slider-dots {
  position: absolute;
  left: clamp(22px, 5vw, 64px);
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  animation: dotSlide 30s infinite;
}

.slider-dots button:nth-child(2) {
  animation-delay: 15s;
}

.hero-slider.manual .slider-dots button {
  animation: none;
}

.hero-slider.manual .slider-dots button.active {
  width: 48px;
  background: var(--blue);
}

@keyframes dotSlide {
  0%, 45% { background: var(--blue); width: 48px; }
  50%, 100% { background: rgba(255, 255, 255, .5); width: 34px; }
}

.slider-hold {
  position: absolute;
  right: clamp(22px, 5vw, 64px);
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  background: rgba(6, 20, 46, .44);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.hero-slider.paused .hero-slide,
.hero-slider.paused .slider-dots button {
  animation-play-state: paused;
}

.hero-slider.paused .slider-hold {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(10, 102, 255, .22);
}

.slider-arrow {
  display: none;
}

.slider-prev {
  left: 18px;
}

.slider-next {
  right: 18px;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
  margin: 26px 0;
}

.checks span {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 11px 13px;
  color: #edf5ff;
  font-size: inherit;
}

.hero-slide-main .checks span {
  color: #14305f;
  background: rgba(255, 255, 255, .78);
  border-color: rgba(10, 102, 255, .14);
}

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

.actions button,
.quote button,
.cta button {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 15px 26px;
  font-weight: 800;
  transition: transform .18s ease;
}

.actions button:hover,
.quote button:hover,
.cta button:hover,
.packages button:hover {
  transform: translateY(-2px);
}

.actions .outline {
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(10, 102, 255, .18);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.laptop {
  width: min(100%, 380px);
  min-height: 230px;
  background:
    linear-gradient(#10224a, #10224a) padding-box,
    linear-gradient(135deg, rgba(8, 200, 255, .8), rgba(107, 53, 255, .9)) border-box;
  border: 2px solid transparent;
  border-radius: 24px;
  text-align: center;
  display: grid;
  place-items: center;
  padding: 34px;
  animation: floatHero 5s ease-in-out infinite;
}

.laptop i {
  font-size: 66px;
  color: var(--cyan);
  margin-bottom: 14px;
}

.laptop span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.badge {
  position: absolute;
  bottom: 10px;
  left: 0;
  background: #fff;
  color: var(--ink);
  padding: 15px 20px;
  border-radius: 14px;
  animation: floatBadge 4.5s ease-in-out infinite;
}

.motion-dot,
.motion-ring {
  position: absolute;
  pointer-events: none;
}

.motion-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  animation: driftDot 7s ease-in-out infinite;
}

.dot-one {
  top: 42px;
  right: 62px;
}

.dot-two {
  left: 36px;
  bottom: 62px;
  background: var(--violet);
  animation-delay: -2s;
}

.motion-ring {
  top: 20px;
  left: 12px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  animation: spinSoft 12s linear infinite;
}

.motion-ring::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

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

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

@keyframes driftDot {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .9; }
  50% { transform: translate(18px, -18px) scale(1.25); opacity: .55; }
}

@keyframes spinSoft {
  to { transform: rotate(360deg); }
}

.quote {
  align-self: start;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-radius: 18px;
  padding: 24px;
}

.compact-quote {
  padding: 20px;
}

.quote p {
  color: var(--muted);
  font-size: 15px;
  margin: 4px 0 12px;
}

.quote select,
.quote input {
  width: 100%;
  margin: 10px 0 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbff;
}

.quote small {
  display: block;
  margin: -6px 0 14px;
  color: var(--muted);
  font-weight: 700;
}

.quote label {
  font-weight: 700;
  font-size: 14px;
}

.quote button {
  width: 100%;
  margin: 4px 0 14px;
}

.quick {
  background: #eff5ff;
  padding: 14px;
  border-radius: 12px;
  color: var(--muted);
}

.quick b {
  color: var(--ink);
}

.quote-message:empty {
  display: none;
}

.trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  background: #fff;
  padding: 26px clamp(22px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.trust div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 12px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(10, 102, 255, .16), rgba(107, 53, 255, .10)) border-box;
  transition: transform .18s ease, border-color .18s ease;
}

.trust div:hover {
  transform: translateY(-4px);
}

.trust i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 20px;
}

.trust b {
  color: var(--ink);
  font-size: 16px;
}

.trust p {
  margin: 0;
  font-size: 14px;
}

.trust p,
.card p,
.reviews p,
.why p,
.packages li {
  color: var(--muted);
}

.container {
  max-width: 1320px;
  margin: auto;
  padding: 38px 24px;
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin: 28px 0 18px;
}

.title h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

.title h2 span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.title a {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.bento-services {
  position: relative;
  margin: 0 0 44px;
  padding: 10px 0 10px;
  overflow: hidden;
}

.bento-services::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 36px;
  width: 96px;
  height: 96px;
  opacity: .45;
  background-image: radial-gradient(circle, rgba(37, 99, 235, .34) 2px, transparent 3px);
  background-size: 18px 18px;
}

.bento-services::after {
  content: "";
  position: absolute;
  inset: 0 -24px auto auto;
  width: 360px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .15), transparent 68%);
  pointer-events: none;
}

.bento-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.bento-heading span {
  color: #2563eb;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
}

.bento-heading h2 {
  margin: 6px 0 8px;
  color: #06142e;
  font-size: clamp(42px, 6vw, 66px);
  line-height: .95;
}

.bento-heading h2 strong {
  color: #5a42f4;
}

.bento-heading p {
  max-width: 520px;
  margin: 0 auto;
  color: #60708b;
  font-size: 16px;
  line-height: 1.45;
}

.bento-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(217, 226, 244, .95);
  border-radius: 24px;
  padding: 28px;
  color: #071735;
  background:
    radial-gradient(circle at 88% 16%, rgba(124, 58, 237, .12), transparent 10rem),
    rgba(255, 255, 255, .92);
  transition: transform .24s ease, border-color .24s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, .35);
}

.bento-card img {
  transition: transform .35s ease;
}

.bento-card:hover img {
  transform: translateY(-4px) scale(1.035);
}

.bento-number {
  min-width: 38px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  font-weight: 900;
}

.bento-card h3 {
  margin: 18px 0 12px;
  color: #06142e;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.08;
}

.bento-card p {
  max-width: 280px;
  color: #53647e;
  font-size: 14px;
  line-height: 1.5;
}

.bento-small p {
  max-width: 185px;
}

.seo-card {
  background:
    radial-gradient(circle at 78% 66%, rgba(124, 58, 237, .11), transparent 9rem),
    linear-gradient(145deg, #ffffff 0%, #fbfcff 58%, #f6f4ff 100%);
}

.seo-card h3 {
  max-width: 190px;
}

.seo-card p {
  max-width: 195px;
  position: relative;
  z-index: 2;
}

.seo-card em {
  position: absolute;
  left: 28px;
  bottom: 28px;
  margin-top: 0;
}

.social-card p {
  max-width: 180px;
}

.ecommerce-card p,
.bento-ai-card p,
.design-card p {
  max-width: 260px;
}

.bento-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #4338ca;
  background: #f0edff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.bento-featured {
  grid-column: span 6;
  min-height: 340px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 11, 45, .95) 0%, rgba(7, 13, 62, .82) 34%, rgba(17, 16, 90, .36) 68%, rgba(17, 16, 90, .18) 100%),
    url("Sec-Banner.png") center / cover no-repeat;
}

.bento-featured h3,
.bento-featured p {
  color: #fff;
}

.bento-copy {
  position: relative;
  z-index: 2;
  max-width: 260px;
}

.bento-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border-radius: 999px;
  padding: 0 10px 0 18px;
  color: #4f39f6;
  background: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}

.bento-action i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.bento-feature-img {
  display: none;
}

.bento-stat {
  position: absolute;
  right: 26px;
  top: 24px;
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  background: rgba(48, 42, 142, .72);
  text-align: center;
  backdrop-filter: blur(14px);
  gap: 2px;
}

.bento-stat b {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.bento-stat span {
  font-size: 11px;
  line-height: 1.05;
}

.bento-feature-list {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 24px;
  background: rgba(255, 255, 255, .06);
  border-top: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.bento-feature-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
}

.bento-small {
  grid-column: span 3;
  min-height: 340px;
  padding-bottom: 26px;
}

.bento-top-icon {
  position: absolute;
  right: 24px;
  top: 28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7c3aed;
  background: #eee8ff;
  font-size: 24px;
}

.seo-graph {
  position: absolute;
  right: 20px;
  bottom: 64px;
  width: 160px;
  height: 108px;
  z-index: 1;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(246, 243, 255, .42));
}

.seo-bars {
  position: absolute;
  left: 10px;
  bottom: 6px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.seo-bars span {
  width: 21px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, rgba(122, 102, 255, .45), rgba(122, 102, 255, .12));
}

.line-chart {
  position: absolute;
  inset: 0;
  overflow: visible;
  filter: none;
  pointer-events: none;
}

.social-card img {
  position: absolute;
  right: 20px;
  bottom: 56px;
  width: 132px;
  filter: none;
}

.social-row {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.social-row i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #2563eb;
  background: #eff6ff;
}

.bento-wide {
  grid-column: span 4;
  height: 250px;
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 28%, rgba(124, 58, 237, .12), transparent 9rem),
    linear-gradient(135deg, #ffffff, #fbfcff);
}

.bento-wide > div:first-child {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ecommerce-card {
  grid-template-columns: minmax(0, 1fr) 150px;
}

.ecommerce-card h3,
.bento-ai-card h3,
.design-card h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.ecommerce-card p,
.bento-ai-card p,
.design-card p {
  max-width: 260px;
  font-size: 13.5px;
  line-height: 1.58;
}

.ecommerce-card em,
.bento-ai-card em,
.design-card em {
  margin-top: auto;
  padding: 8px 13px;
  font-size: 12px;
  white-space: nowrap;
}

.store-preview {
  align-self: start;
  position: relative;
  width: 150px;
  justify-self: end;
  border-radius: 16px;
  padding: 12px 12px 48px;
  background: rgba(255, 255, 255, .9);
  transform: translateY(-4px);
}

.store-preview em {
  position: absolute;
  left: 50%;
  bottom: -50px;
  width: max-content;
  max-width: 172px;
  margin: 0;
  padding: 7px 10px;
  font-size: 10.5px;
  line-height: 1.2;
  white-space: normal;
  transform: translateX(-50%);
}

.store-preview small {
  color: #94a3b8;
  font-weight: 800;
}

.store-preview div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.store-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: #f5f7ff;
}

.store-preview b {
  position: absolute;
  right: -10px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.bento-ai-card,
.design-card {
  grid-template-columns: minmax(0, 1fr) 170px;
}

.bento-ai-card img,
.design-card img {
  width: 168px;
  max-height: 178px;
  max-width: 100%;
  justify-self: end;
  align-self: start;
  object-fit: contain;
  border-radius: 18px;
  filter: none;
}

.design-card img {
  width: 172px;
  align-self: center;
}

.bento-app {
  grid-column: 1 / -1;
  min-height: 170px;
  display: grid;
  grid-template-columns: 42px minmax(220px, 260px) 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.bento-app h3 {
  margin: 0 0 10px;
}

.bento-app p {
  max-width: 260px;
}

.bento-app img {
  width: 200px;
  align-self: end;
  margin-bottom: -28px;
  filter: none;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.app-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d5f7a;
  min-height: 54px;
  border-left: 1px solid rgba(37, 99, 235, .14);
  padding-left: 14px;
  font-size: 12px;
  line-height: 1.3;
}

.app-features i {
  color: #2563eb;
  font-size: 20px;
}

.bento-app button,
.bento-cta a {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}

.bento-cta {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 14px;
  margin-top: 18px;
  text-align: center;
}

.bento-cta h3 {
  color: #06142e;
  font-size: 22px;
}

.shots-section {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin: 34px 0 48px -50vw;
  padding: 56px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(37, 99, 235, .1), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(124, 58, 237, .1), transparent 26rem),
    #fff;
}

.shots-heading {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.shots-heading span {
  display: block;
  margin-bottom: 7px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shots-heading h2 {
  color: #06142e;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
}

.shots-heading a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  text-decoration: none;
  font-weight: 900;
}

.shots-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 34px;
}

.shots-track {
  display: flex;
  width: max-content;
  gap: 28px;
  will-change: transform;
}

.move-left {
  animation: moveLeft 35s linear infinite;
}

.move-right {
  animation: moveRight 35s linear infinite;
}

.shots-row:hover .shots-track {
  animation-play-state: paused;
}

.shot-card {
  flex: 0 0 auto;
  width: 395px;
  color: #06142e;
  text-decoration: none;
}

.shot-preview {
  width: 395px;
  height: 300px;
  overflow: hidden;
  border: 1px solid rgba(214, 224, 241, .9);
  border-radius: 20px;
  background: #eef3ff;
}

.shot-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.shot-card:hover .shot-preview img {
  transform: scale(1.04);
}

.shot-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
}

.creator {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.creator-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 14px;
}

.creator b {
  font-size: 16px;
  white-space: nowrap;
}

.creator span {
  border-radius: 7px;
  padding: 5px 9px;
  color: #31394d;
  background: #ececf6;
  font-size: 11px;
  font-weight: 900;
}

.shot-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1d2940;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.shot-stats span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@keyframes moveLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes moveRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1180px) {
  .shot-card,
  .shot-preview {
    width: 340px;
  }

  .shot-preview {
    height: 258px;
  }

  .bento-featured {
    grid-column: span 12;
  }

  .bento-small,
  .bento-wide {
    grid-column: span 6;
  }

  .bento-app {
    grid-template-columns: 48px 1fr 220px;
  }

  .app-features,
  .bento-app button {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .shots-section {
    padding: 42px 0 18px;
  }

  .shots-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .shots-heading h2 {
    font-size: 34px;
  }

  .shots-track {
    gap: 20px;
  }

  .shot-card,
  .shot-preview {
    width: 300px;
  }

  .shot-preview {
    height: 230px;
    border-radius: 16px;
  }

  .shot-info {
    gap: 9px;
  }

  .creator b {
    font-size: 14px;
  }

  .creator span,
  .shot-stats {
    font-size: 12px;
  }

  .shot-stats {
    gap: 8px;
  }

  .bento-heading h2 {
    font-size: 38px;
  }

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

  .bento-featured,
  .bento-small,
  .bento-wide,
  .bento-app {
    grid-column: 1;
  }

  .bento-featured {
    min-height: 520px;
    padding-bottom: 88px;
  }

  .bento-feature-img {
    right: 16px;
    bottom: 78px;
    width: 70%;
    opacity: .9;
  }

  .bento-stat {
    right: 14px;
    top: 14px;
    width: 92px;
    height: 92px;
  }

  .bento-feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .bento-feature-list span {
    justify-content: flex-start;
    font-size: 12px;
  }

  .ecommerce-card,
  .bento-ai-card,
  .design-card,
  .bento-app {
    grid-template-columns: 1fr;
  }

  .store-preview,
  .bento-ai-card img,
  .design-card img,
  .bento-app img {
    justify-self: center;
  }

  .bento-app {
    min-height: auto;
  }

  .bento-app .bento-number,
  .app-copy,
  .bento-app img,
  .app-features,
  .bento-app button {
    grid-column: auto;
  }

  .app-features {
    grid-template-columns: 1fr;
  }

  .bento-app img {
    margin-bottom: 0;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}

.card,
.grid > div,
.grid > a,
.packages article,
.portfolio div,
.portfolio a,
.reviews div {
  background:
    radial-gradient(circle at 50% 18%, rgba(10, 102, 255, .08), transparent 76px),
    rgba(255, 255, 255, .98);
  border: 1px solid rgba(214, 224, 241, .9);
  border-radius: 18px;
  padding: 24px 18px 18px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease;
}

.card:hover,
.grid > div:hover,
.grid > a:hover,
.packages article:hover,
.portfolio div:hover,
.portfolio a:hover,
.reviews div:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 102, 255, .28);
}

.icon {
  position: relative;
  isolation: isolate;
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 30px;
}

.icon i {
  position: relative;
  z-index: 1;
}

.icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 8% 32%, rgba(10, 102, 255, .18) 0 5px, transparent 6px),
    radial-gradient(circle at 98% 28%, rgba(107, 53, 255, .16) 0 6px, transparent 7px),
    radial-gradient(circle at 15% 78%, rgba(10, 102, 255, .12) 0 4px, transparent 5px),
    rgba(10, 102, 255, .06);
}

.card h3 {
  position: relative;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 18px;
}

.card h3::after,
.service-category-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  transform: translateX(-50%);
}

.card p {
  min-height: 56px;
  font-size: 13px;
  line-height: 1.55;
}

.mini-add {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 13px;
  font-weight: 800;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.grid > div {
  min-height: 132px;
  font-weight: 800;
}

.grid > a {
  min-height: 132px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.service-category-card {
  position: relative;
  overflow: hidden;
}

.service-category-card h3 {
  position: relative;
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 18px;
}

.service-category-card p {
  min-height: 62px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.service-more {
  display: none;
}

.popular-more {
  display: none;
}

.service-buy {
  width: min(100%, 150px);
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 13px;
  font-weight: 900;
}

.home-shop-section {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: 24px;
  margin: 34px 0 48px -50vw;
  padding: 28px clamp(18px, 4vw, 46px);
  background:
    radial-gradient(circle at 18% 14%, rgba(37, 99, 235, .08), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(124, 58, 237, .10), transparent 25rem),
    #fff4ea;
}

.home-shop-hero,
.home-shop-plan {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
}

.home-shop-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(520px, .9fr) minmax(0, 1fr);
  align-items: stretch;
  color: #fff;
  background:
    linear-gradient(110deg, #141414 0%, #141414 45%, rgba(20, 20, 20, .88) 46%, rgba(20, 20, 20, .18) 72%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, .38), transparent 20rem),
    linear-gradient(135deg, #0d1733, #16245a);
  text-decoration: none;
}

.home-shop-hero::before {
  content: "";
  position: absolute;
  left: 43%;
  top: -12%;
  bottom: -12%;
  z-index: 0;
  width: 60px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .42) 1px, transparent 1.8px) 0 0 / 8px 8px,
    linear-gradient(90deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0));
  transform: rotate(8deg);
}

.home-shop-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 48px);
}

.home-shop-copy > span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 8px 13px;
  color: #bde8ff;
  background: rgba(255, 255, 255, .08);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
}

.home-shop-copy h2 {
  max-width: 660px;
  margin: 18px 0 16px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.home-shop-copy h2 strong {
  color: transparent;
  background: linear-gradient(90deg, #21c8f6, #5a42f4 52%, #8a5cff);
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 900;
}

.home-shop-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, .74);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
}

.home-shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.home-shop-tags b {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 8px 11px;
  color: #eef6ff;
  background: rgba(255, 255, 255, .08);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
}

.home-shop-visual {
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
}

.home-shop-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, .16), transparent 30%),
    radial-gradient(circle at 68% 18%, rgba(124, 58, 237, .28), transparent 14rem);
  pointer-events: none;
}

.home-shop-visual img {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  transition: transform .35s ease;
}

.home-shop-hero:hover .home-shop-visual img {
  transform: translateY(-4px) scale(1.03);
}

.shop-visual-main {
  width: 74%;
  height: 74%;
  right: 5%;
  top: 13%;
}

.shop-visual-top {
  width: 42%;
  height: 34%;
  left: 2%;
  top: 7%;
  opacity: .88;
}

.shop-visual-bottom {
  width: 42%;
  height: 34%;
  left: 8%;
  bottom: 7%;
  opacity: .9;
}

.home-shop-badge {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  padding: 11px 13px;
  color: #fff;
  background: rgba(7, 18, 45, .74);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
}

.home-shop-badge i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.home-shop-plan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(8, 22, 52, .14);
  padding: clamp(28px, 3vw, 40px);
  background: rgba(255, 255, 255, .92);
}

.home-shop-plan > span {
  color: #071735;
  font-size: 18px;
  font-weight: 700;
}

.home-shop-plan h3 {
  margin: 4px 0 24px;
  color: #071735;
  font-size: clamp(38px, 4vw, 52px);
  letter-spacing: -.04em;
}

.home-shop-plan h3 small {
  margin-left: 3px;
  color: #071735;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.home-shop-plan ul {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.home-shop-plan li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 14px;
  color: #071735;
  font-size: 16px;
  line-height: 1.45;
}

.home-shop-plan li i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #1f2937;
}

.home-shop-plan a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
}

.why {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(280px, 430px);
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 10vw, 180px);
  margin: 42px 0 42px -50vw;
  background:
    linear-gradient(90deg, rgba(2, 8, 34, .95) 0%, rgba(3, 14, 53, .78) 38%, rgba(3, 14, 53, .18) 72%),
    url("Why-choose-use-banner-01.png") center / cover no-repeat;
  border: 0;
  border-radius: 0;
  padding: 54px clamp(24px, 5vw, 80px);
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 50%, rgba(37, 99, 235, .24), transparent 24rem);
  pointer-events: none;
}

.why-copy,
.why-floating-cards {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  border: 1px solid rgba(139, 163, 255, .28);
  border-radius: 999px;
  padding: 7px 13px;
  color: #9cc4ff;
  background: rgba(10, 28, 80, .52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.why h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.why h2 span {
  color: #75b6ff;
}

.why p {
  max-width: 520px;
  margin: 18px 0;
  color: #d8e6ff;
  font-size: 16px;
  line-height: 1.7;
}

.why li {
  list-style: none;
  margin: 10px 0;
  color: #f7fbff;
  font-weight: 800;
}

.why li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #40d7ff;
  margin-right: 10px;
}

.why-floating-cards {
  display: grid;
  gap: 12px;
  justify-self: end;
  width: 90px;
}

.why-floating-cards div {
  width: 90px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(135, 170, 255, .28);
  border-radius: 18px;
  padding: 12px 10px;
  color: #fff;
  background: linear-gradient(135deg, rgba(11, 30, 86, .72), rgba(30, 18, 91, .54));
  backdrop-filter: blur(14px);
  text-align: center;
}

.why-floating-cards i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.why-floating-cards b {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.why-floating-cards p {
  margin: 0;
  color: #bad4ff;
  font-size: 11px;
  line-height: 1.18;
}

.packages {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.packages article {
  padding: 26px 20px;
}

.packages article.hot {
  background: linear-gradient(180deg, #071735, #12358f 56%, var(--violet));
  color: #fff;
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, .18);
}

.price {
  font-size: 29px;
  color: var(--blue);
  font-weight: 900;
  margin: 14px 0;
}

.hot .price,
.hot li {
  color: #fff;
}

.packages li {
  list-style: none;
  margin: 10px 0;
}

.packages button {
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 12px 24px;
  margin-top: 12px;
  font-weight: 800;
  transition: transform .18s ease;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-card {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  padding: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  isolation: isolate;
  border-color: rgba(7, 23, 53, .08);
  background: #071735;
}

.portfolio-card::before,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity .32s ease, background .32s ease;
}

.portfolio-card::before {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 18%, rgba(124, 58, 237, .22), transparent 12rem),
    rgba(4, 12, 35, .48);
  opacity: 1;
}

.portfolio-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 20, 46, .18) 0%, rgba(6, 20, 46, .52) 48%, rgba(6, 20, 46, .88) 100%);
}

.portfolio-card:hover::before {
  opacity: .18;
}

.portfolio-card:hover::after {
  background: linear-gradient(180deg, rgba(6, 20, 46, .08) 0%, rgba(6, 20, 46, .36) 54%, rgba(6, 20, 46, .86) 100%);
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.04) brightness(.62);
  transition: transform .45s ease, filter .35s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.04) brightness(.92);
}

.portfolio-card span {
  position: relative;
  z-index: 1;
  text-align: left;
}

.portfolio-card i {
  position: relative;
  z-index: 1;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06142e;
  background: #fff;
  transform: translateY(4px) scale(.94);
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease, color .25s ease;
}

.portfolio-card:hover i {
  transform: translateY(0) scale(1);
  opacity: 1;
  color: #2563eb;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reviews div {
  text-align: left;
}

.reviews p {
  margin: 12px 0;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.asset-promo {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(520px, 900px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 54px);
  margin: 48px 0 42px -50vw;
  padding: 58px clamp(22px, 4vw, 70px);
  background:
    radial-gradient(circle at 78% 15%, rgba(124, 58, 237, .12), transparent 26rem),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 46%, #f4f0ff 100%);
  overflow: hidden;
}

.asset-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  padding: 8px 14px;
  color: #2563eb;
  background: rgba(37, 99, 235, .07);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.asset-copy h2 {
  max-width: 410px;
  color: #06142e;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.asset-copy p {
  max-width: 390px;
  margin: 18px 0 24px;
  color: #53647e;
  font-size: 15px;
  line-height: 1.55;
}

.asset-copy p strong,
.asset-copy p span {
  color: #b92ebe;
}

.asset-copy button {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 15px;
  font-weight: 900;
}

.asset-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 158px;
  gap: 12px;
}

.asset-collage a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #071735;
  color: #fff;
  text-decoration: none;
  transition: transform .28s ease;
}

.asset-collage a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 46, .02) 34%, rgba(6, 20, 46, .74) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.asset-collage a:hover {
  transform: translateY(-5px);
}

.asset-collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .38s ease;
}

.asset-collage a:hover img {
  transform: scale(1.04);
}

.asset-collage span {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(6, 20, 46, .72);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  text-align: right;
  opacity: 0;
  transform: translateY(-8px);
  backdrop-filter: blur(10px);
  transition: opacity .24s ease, transform .24s ease;
}

.asset-collage em {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 13px;
  color: #06142e;
  background: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s ease;
}

.asset-collage a:hover::after,
.asset-collage a:last-child::after {
  opacity: 1;
}

.asset-collage a:hover span,
.asset-collage a:hover em,
.asset-collage a:last-child span,
.asset-collage a:last-child em {
  opacity: 1;
  transform: translateY(0);
}

.cta {
  margin: 42px 0 8px;
  background:
    radial-gradient(circle at 84% 28%, rgba(8, 200, 255, .26), transparent 18rem),
    linear-gradient(135deg, #06142e, #08377d 58%, #071735);
  color: #fff;
  border-radius: 18px;
  padding: 38px;
}

.cta p {
  color: #d7e6ff;
  margin: 8px 0 22px;
}

.cta .wa {
  background: var(--green);
  margin-left: 10px;
}

.hosting-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  margin: 42px 0 8px;
  overflow: hidden;
  border: 1px solid rgba(105, 139, 255, .32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 58, 237, .32), transparent 14rem),
    linear-gradient(135deg, rgba(6, 20, 46, .98), rgba(9, 37, 94, .96) 48%, rgba(23, 28, 104, .94));
}

.domain-search-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: 28px;
  margin: 44px 0 18px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 26px;
  padding: 34px;
  background:
    radial-gradient(circle at 88% 16%, rgba(124, 58, 237, .14), transparent 16rem),
    linear-gradient(135deg, #ffffff, #f4f8ff);
  overflow: hidden;
}

.domain-search-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.domain-search-copy h2 {
  max-width: 520px;
  color: #06142e;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.domain-search-copy p {
  max-width: 560px;
  margin-top: 12px;
  color: #60708b;
  line-height: 1.65;
}

.domain-search-box {
  position: relative;
  z-index: 1;
}

.domain-input-wrap {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 18px;
  padding: 9px;
  background: #fff;
}

.domain-input-wrap i {
  color: var(--blue);
  font-size: 20px;
  text-align: center;
}

.domain-input-wrap input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.domain-input-wrap button,
.domain-register-btn {
  border: 0;
  border-radius: 13px;
  padding: 13px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 900;
}

.domain-result-panel {
  margin-top: 14px;
}

.domain-result-card,
.domain-suggestion-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(214, 224, 241, .9);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .92);
}

.domain-result-card.available {
  border-color: rgba(21, 189, 103, .28);
}

.domain-result-card.unavailable {
  border-color: rgba(239, 68, 68, .2);
}

.domain-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.domain-status.ok {
  color: #15bd67;
}

.domain-status.no {
  color: #ef4444;
}

.domain-price {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.domain-suggestions {
  display: grid;
  gap: 10px;
}

.domain-suggestions h4 {
  color: #06142e;
  margin: 2px 0;
}

.hosting-strip a {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #eaf2ff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.18;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background .22s ease, transform .22s ease;
}

.hosting-strip a:last-child {
  border-right: 0;
}

.hosting-strip a:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}

.hosting-strip i {
  width: 34px;
  display: grid;
  place-items: center;
  color: #08c8ff;
  font-size: 27px;
}

.hosting-strip a:nth-child(2) i,
.hosting-strip a:nth-child(6) i {
  color: #7c3aed;
}

.hosting-strip a:nth-child(3) i {
  color: #15bd67;
}

.hosting-strip a:nth-child(4) i {
  color: #ff8a00;
}

.hosting-strip a:nth-child(5) i {
  color: #54a3ff;
}

footer {
  background: #06142e;
  color: #d8e5ff;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 32px;
  padding: 48px clamp(22px, 5vw, 64px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: inherit;
  text-decoration: none;
}

.footer-brand h3 {
  font-size: 21px;
  line-height: 1.1;
  margin-bottom: 2px;
}

.footer-brand p {
  color: #bed0f3;
  margin: 0;
}

footer img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

footer h3,
footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

footer p {
  color: #b8c8e8;
}

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

.follow {
  margin-top: 20px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: transform .18s ease, background .18s ease;
}

.socials a:hover {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  transform: translateY(-2px);
}

.ai-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: linear-gradient(135deg, #fff, #eaf4ff);
  color: var(--blue);
  width: 76px;
  height: 58px;
  border: 1px solid rgba(10, 102, 255, .24);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 34px 1fr;
  place-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 900;
  z-index: 30;
}

.ai-launcher img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.ai-panel {
  position: fixed;
  inset: auto 22px 92px auto;
  width: min(380px, calc(100vw - 32px));
  z-index: 31;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .2s ease, transform .2s ease;
}

.ai-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ai-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.ai-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, #06142e, #0b4dd8 62%, var(--violet));
  padding: 16px;
}

.ai-head .footer-brand {
  margin: 0;
}

.ai-head img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.ai-head h3 {
  font-size: 17px;
  line-height: 1.1;
}

.bento-title-link {
  color: inherit;
  text-decoration: none;
}

.bento-title-link:hover,
.bento-title-link:focus-visible {
  color: #2563eb;
}

.ai-head p {
  color: #d7e6ff;
  font-size: 13px;
}

.ai-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.ai-chat {
  max-height: 350px;
  min-height: 260px;
  overflow-y: auto;
  padding: 16px;
  background:
    radial-gradient(circle at top right, rgba(10, 102, 255, .08), transparent 16rem),
    #f7faff;
}

.ai-msg {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 10px;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 14px;
}

.ai-msg.bot {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.ai-msg.user {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.ai-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ai-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 12px;
}

.ai-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.ai-actions a:last-child {
  background: var(--green);
}

.ai-chips button {
  border: 1px solid rgba(10, 102, 255, .18);
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 800;
  font-size: 12px;
}

.ai-input {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.ai-input input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  outline: 0;
}

.ai-input button {
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 28px 20px;
  background: rgba(6, 20, 46, .56);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  overflow-y: auto;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100dvh - 56px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px;
}

.cart-card {
  width: min(560px, 100%);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: #eef4ff;
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 34px;
  margin-bottom: 18px;
}

.modal-head h2 {
  font-size: 26px;
  line-height: 1.1;
}

.modal-head p,
.form-note {
  color: var(--muted);
  font-size: 14px;
}

.modal-form {
  display: grid;
  gap: 10px;
}

.modal-form label {
  font-weight: 800;
  color: var(--ink-soft);
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px;
  outline: 0;
  background: #f8fbff;
}

.modal-form textarea {
  min-height: 100px;
  resize: vertical;
}

.modal-form button,
.google-btn,
.cart-actions button {
  border: 0;
  border-radius: 12px;
  padding: 13px 16px;
  font-weight: 900;
}

.modal-form button,
.cart-actions button:last-child {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.form-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.form-row input {
  width: auto;
}

.form-row a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}

.auth-alt {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
}

/* Overlay safety: modals and AI should never sit under the sticky header. */
.modal-overlay.open {
  isolation: isolate;
}

.ai-panel {
  z-index: 1200;
  max-height: min(540px, calc(100dvh - 132px));
}

.ai-card {
  max-height: inherit;
  display: flex;
  flex-direction: column;
}

.ai-chat {
  flex: 1 1 auto;
  max-height: none;
  min-height: 210px;
}

.auth-alt span {
  height: 1px;
  background: var(--line);
}

.google-btn {
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.cart-item,
.empty-cart {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #f8fbff;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-item h4 {
  color: var(--ink);
  margin-bottom: 4px;
}

.cart-item p,
.empty-cart {
  color: var(--muted);
  font-size: 14px;
}

.cart-item button {
  border: 0;
  border-radius: 10px;
  padding: 9px 11px;
  color: #d92645;
  background: #fff0f3;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 10px;
}

.payment-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px;
  margin: 12px 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
}

.payment-summary b {
  color: var(--blue);
  font-size: 24px;
}

.cart-summary b {
  color: var(--blue);
  font-size: 24px;
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 10px;
}

.cart-actions button:first-child {
  color: var(--ink);
  background: #eef4ff;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.payment-methods label {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .header {
    flex-wrap: wrap;
  }

  .head-icons {
    flex-basis: 100%;
    justify-content: flex-end;
  }

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

  .hero-visual {
    display: none;
  }

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

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

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

}

@media (max-width: 900px) {
  .topbar,
  .header,
  .nav {
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .search {
    flex-basis: 100%;
    order: 3;
  }

  .nav a {
    display: none;
  }

  .hero-slide-main,
  .why,
  footer {
    grid-template-columns: 1fr;
  }

  .hero-slide-main,
  .hero-slide-image {
    padding-top: 40px;
  }

  .quote {
    max-width: 460px;
  }

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

  .character {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero-text,
  .image-slide-text,
  .theme-note,
  .title,
  .card,
  .grid > div,
  .why,
  .packages article,
  .portfolio div,
  .portfolio a,
  .reviews div,
  .cta,
  footer {
    text-align: center;
  }

  .hero-text h1,
  .hero-text p,
  .image-slide-text,
  .why h2,
  .why p,
  .cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .actions,
  .checks,
  .footer-brand,
  .socials {
    justify-content: center;
  }

  .why ul {
    display: inline-block;
    text-align: left;
  }

  .why {
    min-height: 560px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
    padding: 34px 18px;
    background:
      linear-gradient(180deg, rgba(2, 8, 34, .96) 0%, rgba(3, 14, 53, .82) 52%, rgba(3, 14, 53, .42) 100%),
      url("Why-choose-use-banner-01.png") 68% center / cover no-repeat;
  }

  .why-copy {
    max-width: 560px;
    margin: 0 auto;
  }

  .why-floating-cards {
    justify-self: center;
    width: 90px;
  }

  .asset-promo {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 18px;
    text-align: center;
  }

  .asset-badge,
  .asset-copy p {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .asset-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 126px;
  }

  .hero-slider {
    min-height: auto;
    overflow: visible;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    animation: none;
  }

  .hero-slide-main,
  .hero-slide-image {
    padding: 34px 18px 78px;
  }

  .hero-slide-main {
    min-height: 560px;
  }

  .hero-slide-image {
    position: relative;
    align-items: start;
    min-height: 0;
    aspect-ratio: 4 / 3;
    background:
      url("Mob.view.jpg") center top / contain no-repeat,
      #f7edff;
  }

  .image-slide-text {
    display: none;
  }

  .image-slide-text h2,
  .typing-words {
    font-size: 28px;
    line-height: 1.08;
  }

  .image-slide-text p {
    max-width: 300px;
    font-size: 14px;
    margin: 12px 0 14px;
  }

  .image-slide-text button {
    width: auto;
    min-height: 44px;
    padding: 0 18px;
  }

  .hero-slide-main .quote {
    display: none;
  }

  .slider-dots,
  .slider-hold,
  .slider-arrow {
    display: none;
  }

  .slider-hold {
    right: 16px;
    bottom: 14px;
    padding: 9px 12px;
  }

  .header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
  }

  .topbar {
    gap: 9px;
    font-size: 12px;
    text-align: center;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand h2 {
    font-size: 17px;
  }

  .head-icons {
    display: none;
  }

  .mobile-menu-btn {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    font-size: 20px;
  }

  .mobile-menu {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
  }

  .mobile-menu.open {
    display: grid;
  }

  .mobile-menu button {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 0;
    border-radius: 11px;
    padding: 0 14px;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    font-weight: 800;
  }

  .mobile-language {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 11px;
    padding: 0 14px;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    font-weight: 800;
  }

  .mobile-language select {
    flex: 1;
    min-width: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font-weight: 800;
    outline: 0;
  }

  .mobile-language select option {
    color: #000;
  }

  .mobile-menu b {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--blue);
  }

  .search {
    min-height: 46px;
    grid-column: 1 / -1;
    border-radius: 12px;
  }

  .search select {
    display: none;
  }

  .search input {
    height: 46px;
    padding: 0 10px;
    font-size: 13px;
  }

  .search input::placeholder {
    color: #7b8aa7;
    font-size: 12px;
  }

  .search button {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  .project-brief-toast {
    top: 64px;
    width: calc(100vw - 28px);
    max-width: 356px;
    min-height: 68px;
    gap: 10px;
    padding: 12px 32px 12px 12px;
    border-radius: 12px;
  }

  .project-brief-toast p {
    font-size: 12px;
    line-height: 1.3;
  }

  .brief-start {
    min-width: 92px;
    height: 32px;
    font-size: 11px;
  }

  .search-results-panel {
    top: calc(100% + 8px);
    max-height: 360px;
    border-radius: 14px;
    padding: 8px;
  }

  .search-result-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
    padding: 9px;
  }

  .search-result-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .search-result-action {
    display: none;
  }

  body.mobile-search-sticky .header {
    display: block;
    padding: 8px 12px;
    background: rgba(6, 20, 46, .98);
  }

  body.mobile-search-sticky .brand,
  body.mobile-search-sticky .mobile-menu-btn,
  body.mobile-search-sticky .mobile-menu {
    display: none !important;
  }

  body.mobile-search-sticky .search {
    width: 100%;
    grid-column: auto;
    margin: 0;
    min-height: 44px;
  }

  body.mobile-search-sticky .search input,
  body.mobile-search-sticky .search button {
    height: 44px;
  }

  .all-services-menu {
    grid-template-columns: 1fr;
    max-height: 420px;
    overflow-y: auto;
  }

  .nav button {
    width: 100%;
  }

  .checks,
  .packages,
  .portfolio,
  .reviews {
    grid-template-columns: 1fr;
  }

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

  .grid {
    gap: 12px;
  }

  .cards {
    gap: 12px;
  }

  .card {
    min-height: 184px;
    height: 184px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 10px 12px;
    border-radius: 14px;
  }

  .card.expanded {
    height: auto;
    min-height: 184px;
  }

  .card .icon {
    width: 42px;
    height: 42px;
    margin-bottom: 9px;
    border-radius: 12px;
    font-size: 18px;
  }

  .card h3 {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.2;
  }

  .card .popular-tagline {
    max-height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
    font-size: 11px;
    line-height: 1.45;
  }

  .card.expanded .popular-tagline {
    max-height: none;
    display: block;
    overflow: visible;
  }

  .grid > div,
  .grid > a {
    min-height: 214px;
    height: 214px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 10px 12px;
    border-radius: 14px;
  }

  .grid > div.expanded,
  .grid > a.expanded {
    height: auto;
    min-height: 214px;
  }

  .service-category-card .icon {
    width: 42px;
    height: 42px;
    margin-bottom: 9px;
    border-radius: 12px;
    font-size: 18px;
  }

  .service-category-card h3 {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.22;
  }

  .service-category-card .service-tagline {
    max-height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    color: #687894;
    font-size: 11px;
    line-height: 1.45;
  }

  .service-category-card.expanded .service-tagline {
    max-height: none;
    display: block;
    overflow: visible;
  }

  .service-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(10, 102, 255, .16);
    border-radius: 999px;
    color: var(--blue);
    background: #f4f8ff;
    font-size: 11px;
    font-weight: 900;
  }

  .service-buy {
    width: 100%;
    min-height: 32px;
    margin-top: 8px;
    font-size: 11px;
  }

  .popular-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: auto 0 8px;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(10, 102, 255, .16);
    border-radius: 999px;
    color: var(--blue);
    background: #f4f8ff;
    font-size: 11px;
    font-weight: 900;
  }

  .mini-add {
    width: 100%;
    margin-top: 0;
    padding: 9px 8px;
    font-size: 11px;
  }

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

  .packages article.hot {
    transform: none;
  }

  .cta {
    padding: 28px 22px;
  }

  .hosting-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
  }

  .domain-search-section {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .domain-input-wrap {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .domain-input-wrap button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .domain-result-card,
  .domain-suggestion-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .hosting-strip a {
    min-height: 76px;
    justify-content: flex-start;
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
  }

  .hosting-strip a:nth-child(2n) {
    border-right: 0;
  }

  .hosting-strip a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hosting-strip i {
    font-size: 23px;
  }

  .cta button {
    width: 100%;
  }

  .cta .wa {
    margin: 10px 0 0;
  }

  .cart-actions {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

}

/* Mobile reference layout: compact poster + balanced cards */
@media (max-width: 620px) {
  .modal-overlay {
    align-items: start;
    place-items: start center;
    padding: 76px 12px 18px;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100dvh - 96px);
    border-radius: 16px;
    padding: 18px;
  }

  .ai-panel {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 146px);
  }

  .ai-chat {
    min-height: min(190px, 32dvh);
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    background: #f5f7ff;
  }

  .topbar,
  .service-strip,
  .all-services-menu {
    display: none !important;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 1100;
    display: grid;
    grid-template-columns: 1fr 40px;
    gap: 8px;
    padding: 8px 12px;
    background: #07152f;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand h2 {
    color: #fff;
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .brand p {
    color: #b9c9e8;
    font-size: 8px;
  }

  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 18px;
  }

  .header > .search {
    display: none;
  }

  body.mobile-search-sticky .header {
    display: block;
    padding: 8px 10px;
    border-radius: 0 0 16px 16px;
  }

  body.mobile-search-sticky .header > .search {
    display: flex;
    min-height: 42px;
    margin: 0;
    border-radius: 12px;
  }

  body.mobile-search-sticky .search input,
  body.mobile-search-sticky .search button {
    height: 42px;
  }

  .mobile-menu {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(8, 25, 58, .96);
  }

  .hero-slider {
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    animation: none;
  }

  .hero-slide-main {
    position: relative;
    isolation: isolate;
    height: clamp(275px, 74vw, 330px);
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 26px 18px;
    border-radius: 0;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .98) 0 42%, rgba(255, 255, 255, .78) 58%, rgba(255, 255, 255, .16) 100%),
      url("Final-Hero.png") 62% center / auto 100% no-repeat;
    background-color: #eef5ff;
  }

  .hero-slide-main::before {
    content: none;
  }

  .hero-slide-main::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 45%;
    background: linear-gradient(0deg, rgba(91, 53, 255, .18), transparent);
  }

  .hero-text {
    width: min(58%, 218px);
    text-align: left;
  }

  .hero-text h1 {
    max-width: 188px;
    margin: 0;
    color: #061335;
    font-size: clamp(24px, 7vw, 32px);
    line-height: .98;
    letter-spacing: -.045em;
    text-transform: uppercase;
  }

  .hero-text h1 span {
    display: inline;
    color: #5b35ff;
  }

  .hero-text p {
    max-width: 190px;
    margin: 8px 0 11px;
    color: #273a61;
    font-size: 9.5px;
    font-weight: 900;
    line-height: 1.35;
  }

  .hero-text .checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    width: min(196px, 100%);
    margin: 0;
  }

  .hero-text .checks span {
    min-height: 22px;
    border-radius: 7px;
    padding: 4px 6px;
    color: #17213b;
    background: rgba(255, 255, 255, .88);
    font-size: 6.5px;
    font-weight: 900;
    line-height: 1.2;
  }

  .hero-text .checks i {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    border-radius: 4px;
    font-size: 6.5px;
  }

  .hero-text .checks span {
    min-height: 23px;
    justify-content: flex-start;
    border-radius: 6px;
    padding: 3px 6px;
    color: #17213b;
    background: rgba(255, 255, 255, .88);
    font-size: 6.4px;
    font-weight: 900;
    line-height: 1.2;
  }

  .hero-text .checks i {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    font-size: 6.5px;
  }

  .actions {
    justify-content: flex-start;
    gap: 7px;
    margin-top: 10px;
  }

  .actions button,
  .actions .outline {
    min-height: 28px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 8px;
    font-weight: 900;
  }

  .actions button {
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: 0;
  }

  .actions .outline {
    color: #061335;
    border: 1px solid rgba(37, 99, 235, .22);
    background: rgba(255, 255, 255, .86);
  }

  .hero-slide-main .quote,
  .hero-slide-image,
  .slider-dots,
  .slider-hold,
  .slider-arrow {
    display: none !important;
  }

  .trust {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0 auto 22px;
    padding: 12px 14px;
    border: 0;
    border-radius: 0;
    background: #fff;
  }

  .trust div {
    min-width: 0;
    min-height: 82px;
    padding: 12px 8px;
    border: 0;
    border-right: 1px solid rgba(214, 224, 241, .82);
    border-bottom: 1px solid rgba(214, 224, 241, .82);
    border-radius: 0;
    background: transparent;
  }

  .trust div:nth-child(2n),
  .trust div:last-child {
    border-right: 0;
  }

  .trust div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    font-size: 15px;
  }

  .trust b {
    display: block;
    color: #102048;
    font-size: 11.5px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .trust p {
    display: block;
    margin-top: 4px;
    color: #667795;
    font-size: 9.5px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .trust div:last-child {
    grid-column: 1 / -1;
    min-height: 76px;
  }

  .container {
    width: min(100% - 20px, 410px);
    padding-top: 0;
  }

  .bento-services,
  .shots-section,
  .why,
  .asset-promo,
  .domain-search-section,
  .hosting-strip {
    margin-top: 20px;
  }

  .bento-services {
    border-radius: 24px;
    padding: 2px 0 0;
  }

  .bento-heading {
    margin-bottom: 16px;
    text-align: center;
  }

  .bento-heading h2,
  .shots-heading h2,
  .title h2,
  .asset-copy h2,
  .domain-search-copy h2 {
    color: #061335;
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1;
    letter-spacing: -.05em;
  }

  .bento-heading h2 strong,
  .shots-heading h2,
  .title h2 span {
    color: #4d35ed;
  }

  .bento-heading p,
  .shots-heading span,
  .domain-search-copy p,
  .asset-copy p {
    max-width: 310px;
    margin-inline: auto;
    color: #687894;
    font-size: 11px;
    line-height: 1.5;
  }

  .bento-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bento-card {
    grid-column: auto;
    min-height: 168px;
    border-radius: 13px;
    padding: 13px;
  }

  .bento-small,
  .bento-wide {
    grid-column: auto;
  }

  .bento-featured {
    grid-column: 1 / -1;
    min-height: 240px;
    padding: 18px 16px 50px;
    border-radius: 16px;
  }

  .bento-copy h3,
  .bento-card h3 {
    font-size: 16px;
    line-height: 1.05;
  }

  .bento-copy p,
  .bento-card p {
    max-width: 150px;
    font-size: 10px;
    line-height: 1.45;
  }

  .bento-number {
    width: 26px;
    height: 24px;
    border-radius: 6px;
    font-size: 10px;
  }

  .bento-action,
  .bento-card em {
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 8.5px;
  }

  .bento-feature-img {
    right: -4px;
    bottom: 42px;
    width: 55%;
    max-height: 150px;
    object-fit: contain;
  }

  .bento-stat {
    top: 12px;
    right: 12px;
    width: 58px;
    height: 58px;
    padding: 4px;
  }

  .bento-stat b {
    font-size: 18px;
    line-height: .9;
  }

  .bento-stat span {
    font-size: 7px;
    line-height: 1.05;
  }

  .bento-feature-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 9px 6px;
    overflow: hidden;
  }

  .bento-feature-list span {
    justify-content: center;
    gap: 3px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    font-size: 7px;
    line-height: 1.2;
    text-align: center;
  }

  .bento-feature-list span:last-child {
    border-right: 0;
  }

  .bento-top-icon {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .seo-card .seo-graph {
    width: 100px;
    height: 68px;
    margin: 6px 0 0 auto;
  }

  .seo-card .seo-bars {
    gap: 7px;
  }

  .seo-card .seo-bars span {
    width: 15px;
  }

  .social-card img,
  .bento-ai-card img,
  .design-card img {
    max-width: 78px;
    align-self: end;
    justify-self: end;
  }

  .social-card,
  .ecommerce-card,
  .bento-ai-card {
    overflow: hidden;
  }

  .social-card p,
  .ecommerce-card p,
  .bento-ai-card p {
    max-width: 116px;
    font-size: 9px;
  }

  .social-card h3 {
    font-size: 14px;
  }

  .social-card img {
    transform: translateX(8px);
  }

  .social-card .social-row {
    max-width: 92px;
    flex-wrap: wrap;
  }

  .social-row {
    gap: 5px;
  }

  .social-row i {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .ecommerce-card,
  .bento-ai-card,
  .design-card {
    grid-template-columns: 1fr;
  }

  .store-preview {
    justify-self: end;
    width: 92px;
    padding: 8px;
  }

  .store-preview img {
    width: 40px;
    height: 40px;
  }

  .bento-app {
    position: relative;
    grid-column: 1 / -1;
    min-height: 138px;
    grid-template-columns: 26px minmax(0, 1fr) 104px;
    align-items: center;
    padding: 14px;
  }

  .bento-app .bento-number,
  .app-copy,
  .bento-app img,
  .app-features,
  .bento-app button {
    grid-column: auto;
  }

  .app-copy h3 {
    font-size: 18px;
  }

  .app-copy p {
    font-size: 10px;
  }

  .bento-app img {
    width: 100px;
    margin: 0;
  }

  .app-features {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 8px;
  }

  .app-features span {
    justify-content: center;
    gap: 3px;
    padding: 0;
    border: 0;
    font-size: 7px;
    line-height: 1.2;
    text-align: center;
  }

  .bento-app button {
    position: absolute;
    right: 14px;
    bottom: 14px;
    min-height: 28px;
    margin: 0;
    padding: 0 11px;
    font-size: 9px;
  }

  .design-card {
    grid-column: 1 / -1;
    min-height: 142px;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: center;
  }

  .design-card > div {
    min-width: 0;
  }

  .design-card p {
    max-width: 170px;
  }

  .design-card img {
    max-width: 106px;
    align-self: center;
  }

  .bento-cta {
    margin-top: 8px;
    padding: 16px 10px;
    border-radius: 16px;
    text-align: center;
  }

  .bento-cta h3 {
    font-size: 13px;
    line-height: 1.2;
  }

  .bento-cta a {
    min-height: 32px;
    margin-top: 8px;
    padding: 0 16px;
    font-size: 10px;
  }

  .shots-section {
    padding: 22px 0 6px;
    border-radius: 0;
    background: transparent;
  }

  .shots-heading {
    align-items: center;
    margin-bottom: 12px;
    text-align: center;
  }

  .shots-heading h2 {
    max-width: 100%;
    font-size: clamp(25px, 7.4vw, 30px);
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .shots-heading a {
    display: none;
  }

  .shots-row {
    overflow: visible;
  }

  .shots-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    animation: none;
  }

  .shots-track .shot-card:nth-child(n + 4) {
    display: none;
  }

  .shot-card,
  .shot-preview {
    width: auto;
  }

  .shot-card {
    border-radius: 12px;
  }

  .shot-preview {
    height: 92px;
    border-radius: 12px 12px 0 0;
  }

  .shot-preview::after {
    background: rgba(4, 12, 39, .34);
  }

  .shot-info {
    padding: 8px;
  }

  .creator-logo,
  .shot-stats {
    display: none;
  }

  .creator b {
    color: #0b1a3a;
    font-size: 9px;
    line-height: 1.15;
  }

  .creator span {
    font-size: 7px;
  }

  .why {
    left: auto;
    width: 100%;
    min-height: 238px;
    grid-template-columns: 1fr 78px;
    gap: 8px;
    margin: 18px 0;
    border-radius: 13px;
    padding: 22px 14px;
    background:
      linear-gradient(90deg, rgba(2, 8, 34, .96) 0 48%, rgba(3, 14, 53, .72) 100%),
      url("Why-choose-use-banner-01.png") 70% center / cover no-repeat;
  }

  .section-kicker {
    margin-bottom: 7px;
    padding: 5px 8px;
    font-size: 7px;
  }

  .why h2 {
    max-width: 230px;
    font-size: 22px;
    line-height: 1.05;
  }

  .why p {
    max-width: 220px;
    margin: 10px 0;
    font-size: 9px;
    line-height: 1.45;
  }

  .why ul {
    display: block;
    margin: 0;
  }

  .why li {
    margin: 5px 0;
    font-size: 9px;
  }

  .why-floating-cards {
    width: 70px;
    gap: 6px;
    justify-self: end;
  }

  .why-floating-cards div {
    width: 70px;
    min-height: 54px;
    border-radius: 11px;
    padding: 5px 4px;
  }

  .why-floating-cards i {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    font-size: 9px;
  }

  .why-floating-cards b {
    font-size: 12px;
  }

  .why-floating-cards p {
    font-size: 6px;
  }

  .title {
    align-items: center;
    margin: 20px 0 12px;
    text-align: center;
  }

  .title h2 {
    width: 100%;
  }

  .title a {
    display: none;
  }

  .packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .packages article {
    min-height: 214px;
    border-radius: 12px;
    padding: 16px 11px;
  }

  .packages article:nth-child(n + 4) {
    display: block;
  }

  .packages article:last-child {
    grid-column: 1 / -1;
  }

  .packages h3 {
    font-size: 11px;
    line-height: 1.2;
  }

  .price {
    margin: 10px 0;
    font-size: 18px;
  }

  .packages li {
    margin: 6px 0;
    font-size: 8.5px;
    line-height: 1.35;
  }

  .packages button {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 9px;
  }

  .portfolio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .portfolio-card {
    min-height: 104px;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
  }

  .portfolio-card img {
    height: 104px;
    object-fit: cover;
    filter: brightness(.58) saturate(1.1);
  }

  .portfolio-card span {
    left: 8px;
    bottom: 8px;
    max-width: 96px;
    color: #fff;
    font-size: 8px;
  }

  .portfolio-card i {
    right: 7px;
    bottom: 7px;
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .asset-promo {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
    border: 0;
    background: transparent;
    text-align: center;
  }

  .asset-badge {
    justify-content: center;
    margin-inline: auto;
    font-size: 8px;
  }

  .asset-copy button {
    display: none;
  }

  .asset-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 92px;
    gap: 9px;
  }

  .asset-collage a {
    min-height: 92px;
    border-radius: 12px;
  }

  .asset-collage span {
    top: 7px;
    right: 8px;
    left: auto;
    bottom: auto;
    max-width: 76px;
    border-radius: 999px;
    padding: 4px 7px;
    background: rgba(255, 255, 255, .9);
    color: #102048;
    font-size: 7px;
    line-height: 1.1;
    text-align: right;
  }

  .asset-collage em {
    right: 7px;
    bottom: 7px;
    width: 22px;
    height: 22px;
    font-size: 7px;
  }

  .domain-search-section {
    display: block;
    padding: 18px 10px;
    border-radius: 16px;
    text-align: center;
  }

  .domain-search-copy span {
    font-size: 8px;
  }

  .domain-input-wrap {
    grid-template-columns: 30px minmax(0, 1fr) 68px;
    border-radius: 9px;
    padding: 5px;
  }

  .domain-input-wrap input {
    height: 34px;
    font-size: 9px;
  }

  .domain-input-wrap button {
    grid-column: auto;
    width: auto;
    height: 34px;
    border-radius: 7px;
    font-size: 9px;
  }

  .hosting-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-radius: 13px;
    padding: 4px;
  }

  .hosting-strip a {
    min-height: 58px;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
    border-radius: 10px;
    border: 0;
    font-size: 7px;
    line-height: 1.15;
    text-align: center;
  }

  .hosting-strip i {
    font-size: 16px;
  }

  footer {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    min-height: 0;
    padding: 30px 20px 92px;
    background: #07152f;
    text-align: left;
  }

  footer > div:first-child,
  footer > div:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  footer .follow,
  footer .socials {
    justify-content: center;
  }

  footer h4 {
    margin-bottom: 8px;
    font-size: 13px;
  }

  footer p,
  footer a {
    font-size: 11px;
    line-height: 1.75;
  }

  .footer-brand img {
    width: 38px;
    height: 38px;
  }

  footer h4,
  footer p,
  footer a {
    color: #dce8ff;
  }
}

@media (max-width: 374px) {
  .hero-text {
    width: 56%;
  }

  .hero-text h1 {
    max-width: 168px;
    font-size: 25px;
  }

  .hero-text .checks {
    width: 184px;
  }

  .trust b {
    font-size: 10.5px;
    white-space: normal;
  }

  .trust p {
    font-size: 9px;
  }

  .bento-heading h2,
  .shots-heading h2,
  .title h2,
  .asset-copy h2,
  .domain-search-copy h2 {
    font-size: 29px;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .container {
    width: calc(100% - 16px);
  }

  .bento-card {
    min-width: 0;
  }

  .packages article {
    padding-inline: 9px;
  }
}

@media (min-width: 621px) and (max-width: 1180px) {
  .header {
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
  }

  .brand,
  .search,
  .head-icons {
    min-width: 0;
    margin: 0;
  }

  .search {
    width: 100%;
    order: initial;
    flex-basis: auto;
  }

  .head-icons {
    flex-basis: auto;
    justify-content: flex-end;
  }

  .hero-slide-main .quote {
    display: none;
  }

  .service-strip {
    max-width: 100%;
    padding-inline: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .service-strip::-webkit-scrollbar {
    display: none;
  }

  .service-strip > a,
  .service-strip > .strip-dropdown {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .service-strip a,
  .strip-dropdown-toggle {
    min-height: 52px;
    padding-inline: 10px;
    font-size: 12.5px;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .topbar a {
    display: none;
  }

  .header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 22px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .head-icons {
    grid-column: 2;
    grid-row: 1;
  }

  .search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .trust > div:last-child {
    grid-column: 1 / -1;
  }

  .hero-slide-image {
    padding: 48px 32px;
  }

  .image-slide-text {
    width: 48%;
    max-width: 360px;
  }

  .image-slide-text h2,
  .typing-words {
    font-size: 32px;
    line-height: 1.06;
  }

  .image-slide-text p {
    max-width: 330px;
    margin: 18px 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .image-slide-text button {
    padding: 13px 20px;
    font-size: 13px;
  }

  .asset-promo {
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 42px 32px;
  }

  .asset-copy {
    width: min(100%, 620px);
    margin-inline: auto;
    text-align: center;
  }

  .asset-copy h2,
  .asset-copy p {
    margin-inline: auto;
  }

  .asset-collage {
    width: min(100%, 700px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 138px;
    margin-inline: auto;
  }
}

.mobile-content-slider {
  display: none;
}

@media (max-width: 620px) {
  .shots-section .shots-row,
  #portfolio {
    display: none;
  }

  .mobile-content-slider {
    width: 100%;
    display: block;
    margin-top: 14px;
  }

  .mobile-slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    touch-action: pan-y;
  }

  .mobile-slider-track {
    display: flex;
    align-items: stretch;
    transform: translate3d(0, 0, 0);
    transition: transform .48s cubic-bezier(.22, .75, .2, 1);
    will-change: transform;
  }

  .mobile-slider-slide {
    min-width: 0;
    flex: 0 0 100%;
    padding: 2px;
  }

  .mobile-content-slider .shot-card,
  .mobile-content-slider .shot-preview {
    width: 100%;
  }

  .mobile-content-slider .shot-card {
    min-height: 0;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(214, 224, 241, .92);
    border-radius: 18px;
    background: #fff;
  }

  .mobile-content-slider .shot-preview {
    height: clamp(190px, 58vw, 236px);
    border-radius: 17px 17px 0 0;
  }

  .mobile-content-slider .shot-preview::after {
    background: linear-gradient(180deg, transparent 58%, rgba(5, 16, 46, .16));
  }

  .mobile-content-slider .shot-info {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
  }

  .mobile-content-slider .creator {
    min-width: 0;
    gap: 7px;
  }

  .mobile-content-slider .creator-logo {
    width: 28px;
    height: 28px;
    display: grid;
    flex: 0 0 28px;
    font-size: 11px;
  }

  .mobile-content-slider .creator b {
    color: #0b1a3a;
    font-size: 12px;
    line-height: 1.2;
  }

  .mobile-content-slider .creator span {
    font-size: 8px;
  }

  .mobile-content-slider .shot-stats {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    font-size: 9px;
  }

  .mobile-content-slider--recent .mobile-slider-viewport {
    border-radius: 18px;
  }

  .mobile-content-slider--recent .portfolio-card {
    width: 100%;
    min-height: 220px;
    height: 220px;
    display: block;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
  }

  .mobile-content-slider--recent .portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: brightness(.68) saturate(1.06);
  }

  .mobile-content-slider--recent .portfolio-card span {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 70px);
    color: #fff;
    font-size: 13px;
  }

  .mobile-content-slider--recent .portfolio-card i {
    right: 13px;
    bottom: 13px;
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .mobile-slider-controls {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
  }

  .mobile-slider-prev,
  .mobile-slider-next {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    font-size: 11px;
  }

  .mobile-slider-dots {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mobile-slider-dots button {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: #c8d4e9;
    transition: width .22s ease, background .22s ease;
  }

  .mobile-slider-dots button.active {
    width: 22px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-slider-track {
      transition: none;
    }
  }
}

/* IIDE-inspired mobile rhythm: compact, focused and easy to scan. */
@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    background: #f5f8ff;
  }

  .container {
    width: calc(100% - 20px);
  }

  main.container {
    display: block;
  }

  .bento-services,
  .shots-section,
  .asset-promo,
  .domain-search-section {
    margin-block: 16px;
  }

  .bento-services {
    padding: 22px 0 10px;
  }

  .bento-heading,
  .shots-heading,
  .title,
  .asset-copy,
  .domain-search-copy {
    text-align: center;
  }

  .shots-heading {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }

  .shots-section .shots-heading h2 {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .bento-heading h2,
  .shots-heading h2,
  .title h2,
  .asset-copy h2,
  .domain-search-copy h2 {
    margin-inline: auto;
    font-size: clamp(23px, 6.6vw, 27px);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .bento-heading p,
  .shots-heading p,
  .asset-copy p,
  .domain-search-copy p {
    max-width: 320px;
    margin: 7px auto 0;
    color: #66728a;
    font-size: 10px;
    line-height: 1.48;
  }

  .bento-grid {
    gap: 8px;
    margin-top: 14px;
  }

  .bento-card {
    border-color: #dfe7f5;
    border-radius: 11px;
  }

  .bento-card:hover {
    transform: none;
  }

  .bento-featured {
    border-radius: 13px;
  }

  .bento-small,
  .bento-wide,
  .design-card,
  .bento-app {
    min-height: 132px;
  }

  .seo-card,
  .social-card {
    min-height: 164px;
  }

  .seo-card .seo-graph {
    right: 8px;
    bottom: 10px;
    width: 96px;
    height: 64px;
  }

  .social-card h3 {
    max-width: 105px;
    font-size: 13px;
  }

  .social-card img {
    right: 4px;
    bottom: 35px;
    max-width: 70px;
    transform: none;
  }

  .social-card .social-row {
    left: 13px;
    bottom: 9px;
  }

  .bento-cta {
    margin-top: 10px;
    padding: 14px 10px 8px;
    border: 0;
    background: transparent;
  }

  .bento-cta h3 {
    font-size: 12px;
  }

  .bento-cta a,
  .mobile-slider-action {
    width: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(90deg, #123d99, #2455cc);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
  }

  .shots-section {
    padding: 20px 0 6px;
  }

  .shots-heading span,
  .asset-badge,
  .domain-search-copy > span {
    color: #2455cc;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-content-slider {
    margin-top: 11px;
  }

  .mobile-slider-viewport,
  .mobile-content-slider .shot-card,
  .mobile-content-slider--recent .portfolio-card {
    border-radius: 11px;
  }

  .mobile-content-slider .shot-card {
    border-color: #dfe7f5;
  }

  .mobile-content-slider .shot-preview {
    height: clamp(160px, 48vw, 190px);
    border-radius: 10px 10px 0 0;
  }

  .mobile-content-slider .shot-info {
    min-height: 50px;
    padding: 9px 10px;
  }

  .mobile-content-slider--recent .portfolio-card,
  .mobile-content-slider--recent .portfolio-card img {
    height: 188px;
    min-height: 188px;
  }

  .mobile-slider-controls {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 8px;
    margin-top: 9px;
  }

  .mobile-slider-prev,
  .mobile-slider-next {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }

  .mobile-slider-action {
    margin-top: 9px;
  }

  .why {
    margin-block: 18px;
    border-radius: 11px;
  }

  .title {
    margin: 22px 0 10px;
  }

  .title h2 span {
    display: block;
    margin-top: 4px;
    color: #6d7890;
    font-size: 9px;
    font-weight: 500;
  }

  .packages {
    gap: 8px;
  }

  .packages article {
    min-height: 202px;
    border-color: #dfe7f5;
    border-radius: 10px;
    padding: 14px 10px;
  }

  .packages button {
    width: 100%;
    border-radius: 6px;
  }

  .asset-promo {
    gap: 12px;
    padding: 21px 0 8px;
  }

  .asset-copy h2 {
    max-width: 330px;
  }

  .asset-collage {
    gap: 7px;
    grid-auto-rows: 88px;
  }

  .asset-collage a {
    min-height: 88px;
    border: 1px solid #dfe7f5;
    border-radius: 9px;
  }

  .domain-search-section {
    padding: 20px 10px 14px;
    border: 1px solid #dfe7f5;
    border-radius: 11px;
    background: #fff;
  }

  .domain-input-wrap {
    margin-top: 11px;
    border: 1px solid #d9e3f4;
  }

  .hosting-strip {
    margin-top: 10px;
    border: 1px solid rgba(91, 126, 221, .32);
    border-radius: 11px;
  }

  footer {
    margin-top: 18px;
  }
}

@media (max-width: 374px) {
  .shots-section .shots-heading h2 {
    font-size: 19px;
  }

  .bento-heading h2,
  .title h2,
  .asset-copy h2,
  .domain-search-copy h2 {
    font-size: 23px;
  }
}

/* Final mobile polish: Digital Assets & AI Tools should read one item at a time. */
@media (max-width: 620px) {
  .asset-promo {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100vw !important;
    margin-left: -50vw !important;
    padding: 24px 12px 18px !important;
  }

  .asset-copy {
    text-align: center !important;
  }

  .asset-copy h2,
  .asset-copy p {
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .asset-collage {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 12px !important;
  }

  .asset-collage a {
    min-height: 168px !important;
    border-radius: 12px !important;
  }

  .asset-collage img {
    height: 168px !important;
  }

  .asset-collage a::after,
  .asset-collage span,
  .asset-collage em {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .asset-collage span {
    right: 10px !important;
    top: 10px !important;
    max-width: calc(100% - 20px) !important;
    font-size: 11px !important;
  }

  .asset-collage em {
    right: 10px !important;
    bottom: 10px !important;
  }

  .modal-overlay {
    align-items: start !important;
    place-items: start center !important;
    padding-top: 118px !important;
  }

  .modal-card {
    max-height: calc(100dvh - 138px) !important;
  }
}

@media (max-width: 1080px) {
  .home-shop-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-shop-hero {
    grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr);
  }

  .home-shop-plan {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .home-shop-section {
    left: auto;
    width: calc(100% + 20px);
    max-width: none;
    display: grid;
    gap: 12px;
    margin: 16px 0 18px -10px;
    padding: 12px 10px;
    background: #fff4ea;
  }

  .home-shop-hero {
    min-height: 430px;
    display: block;
    border-radius: 0;
  }

  .home-shop-hero::before {
    left: auto;
    right: 34%;
    width: 38px;
    opacity: .55;
  }

  .home-shop-copy {
    min-height: 220px;
    justify-content: flex-start;
    padding: 24px 18px 12px;
  }

  .home-shop-copy > span {
    padding: 6px 9px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
  }

  .home-shop-copy h2 {
    max-width: 310px;
    margin: 13px 0 10px;
    font-size: clamp(31px, 9.5vw, 42px);
    line-height: 1.03;
    letter-spacing: -.03em;
  }

  .home-shop-copy p {
    max-width: 295px;
    font-size: 11px;
    line-height: 1.5;
  }

  .home-shop-tags {
    gap: 6px;
    margin-top: 13px;
  }

  .home-shop-tags b {
    padding: 6px 8px;
    font-size: 9px;
  }

  .home-shop-visual {
    min-height: 210px;
  }

  .home-shop-visual img {
    border-radius: 12px;
  }

  .shop-visual-main {
    width: 72%;
    height: 64%;
    right: 5%;
    top: 12%;
  }

  .shop-visual-top {
    width: 42%;
    height: 31%;
    left: 4%;
    top: 8%;
  }

  .shop-visual-bottom {
    width: 42%;
    height: 31%;
    left: 7%;
    bottom: 12%;
  }

  .home-shop-badge {
    right: 14px;
    bottom: 13px;
    border-radius: 12px;
    padding: 8px 9px;
    font-size: 10px;
  }

  .home-shop-badge i {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .home-shop-plan {
    min-height: 0;
    border-radius: 14px;
    padding: 20px;
  }

  .home-shop-plan > span {
    font-size: 13px;
  }

  .home-shop-plan h3 {
    margin-bottom: 16px;
    font-size: 35px;
  }

  .home-shop-plan h3 small {
    font-size: 13px;
  }

  .home-shop-plan ul {
    gap: 12px;
    margin-bottom: 18px;
  }

  .home-shop-plan li {
    grid-template-columns: 22px 1fr;
    gap: 10px;
    font-size: 12px;
  }

  .home-shop-plan li i {
    width: 22px;
    height: 22px;
  }

  .home-shop-plan a {
    min-height: 42px;
    border-radius: 8px;
    font-size: 12px;
  }
}
