@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --header-height: 78px;
  --navy: #061634;
  --deep: #02091c;
  --ink: #102548;
  --blue: #087cff;
  --cyan: #38dfff;
  --soft: #f3f8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-sans), system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

img {
  display: block;
  max-width: 100%;
}

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

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

.section-dark {
  color: #fff;
  background: radial-gradient(circle at 50% 0%, rgba(22, 119, 255, 0.36), transparent 44%), var(--deep);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(11, 60, 120, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(10, 30, 70, 0.08);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #0a3472;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a:not(.nav-cta) {
  color: #1c355d;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0068ff, #48b8ff);
  box-shadow: 0 14px 30px rgba(0, 111, 255, 0.32);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 142, 255, 0.36);
}

.nav-cta img,
.button img {
  width: 18px;
  height: 18px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 62, 130, 0.18);
  border-radius: 8px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #0c3574;
}

.hero {
  min-height: 706px;
  overflow: hidden;
  padding: 96px 0 0;
}

.hero-bg,
.contact-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(2, 9, 28, 0.94), rgba(2, 14, 43, 0.7)), url("../assets/images/hero/hero_particle_bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.98;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% 0 -8%;
  height: 110px;
  background: radial-gradient(ellipse at 74% 100%, rgba(68, 200, 255, 0.95), transparent 48%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-heading p {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.hero h1 {
  margin: 0;
  color: #eaf4ff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.18;
  font-weight: 900;
  text-shadow: 0 0 36px rgba(92, 174, 255, 0.3);
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 34px;
  color: #f1f7ff;
  font-size: 20px;
  line-height: 1.9;
  font-weight: 700;
}

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

.button-ghost {
  color: #fff;
  border: 1px solid rgba(211, 234, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.button-white {
  min-width: 300px;
  color: #0b4d9c;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 45, 130, 0.22);
}

.hero-media {
  position: relative;
  min-height: 500px;
}

.thumb-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(110, 204, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 8, 26, 0.42), 0 0 34px rgba(29, 168, 255, 0.24);
  animation: float 5.8s ease-in-out infinite;
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(2, 12, 34, 0.78);
}

.thumb-1 {
  width: 25%;
  min-width: 210px;
  aspect-ratio: 1.24 / 1;
  left: 0;
  top: 34%;
  opacity: 0.76;
}

.thumb-2 {
  width: 38%;
  min-width: 300px;
  aspect-ratio: 1.72 / 1;
  right: 5%;
  top: 4%;
  animation-delay: 0.7s;
}

.thumb-3 {
  width: 44%;
  min-width: 330px;
  aspect-ratio: 1.36 / 1;
  left: 13%;
  bottom: 6%;
  z-index: 2;
  animation-delay: 1.2s;
}

.thumb-4 {
  width: 32%;
  min-width: 260px;
  aspect-ratio: 1.18 / 1;
  right: 0;
  top: 47%;
  animation-delay: 0.3s;
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(0, 30, 70, 0.5);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #fff;
}

.hero-feature-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  padding: 22px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(2, 8, 22, 0.82);
}

.hero-feature-bar span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 18px;
  font-weight: 800;
}

.hero-feature-bar span:last-child {
  border-right: 0;
}

.hero-feature-bar img {
  width: 30px;
  height: 30px;
}

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

.section-heading h2,
.about-grid h2,
.contact-grid h2 {
  margin: 0;
  color: #092556;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.28;
  font-weight: 900;
}

.section-heading span {
  display: block;
  margin-top: 18px;
  color: #49617e;
  font-size: 18px;
  line-height: 1.8;
}

.section-heading.dark h2,
.section-heading.dark span {
  color: #eef7ff;
}

.worries-section,
.features-section,
.flow-section,
.form-section {
  background: linear-gradient(180deg, #f6fbff, #fff);
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.mini-card,
.feature-card,
.flow-item,
.faq-item,
.form-shell {
  border: 1px solid rgba(38, 118, 214, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(19, 67, 126, 0.1);
}

.mini-card {
  min-height: 172px;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 30px 16px;
  text-align: center;
}

.mini-card img {
  width: 80px;
  height: 80px;
}

.mini-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.center-copy {
  margin: 34px 0 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.center-copy span {
  color: var(--blue);
}

.about-section {
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 42%, rgba(230, 246, 255, 0.95) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 60px;
}

.about-grid p:not(.script-label) {
  color: #31486a;
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}

.about-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 60, 130, 0.16);
}

.script-label {
  margin: 0 0 -6px;
  color: rgba(13, 126, 255, 0.18);
  font-size: 52px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 44px 28px 36px;
  text-align: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -7px auto auto 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}

.feature-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
}

.feature-card h3,
.flow-item h3,
.work-card h3 {
  margin: 0 0 12px;
  color: #092556;
  font-size: 20px;
  font-weight: 900;
}

.feature-card p,
.flow-item p,
.work-card p {
  margin: 0;
  color: #526981;
  line-height: 1.75;
}

.works-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(56, 223, 255, 0.22), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(0, 120, 255, 0.28), transparent 28%),
    linear-gradient(180deg, #061634 0%, #041027 100%);
}

.works-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero/hero_particle_bg.png");
  background-position: center;
  background-size: cover;
  opacity: 0.38;
  pointer-events: none;
}

.works-section .container {
  position: relative;
  z-index: 1;
}

.works-section .section-heading h2 {
  color: #f2f8ff;
  text-shadow: 0 0 28px rgba(56, 223, 255, 0.22);
}

.category-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 0 8px;
  scrollbar-width: none;
}

.category-tabs button {
  min-width: max-content;
  min-height: 38px;
  padding: 0 24px;
  border: 1px solid rgba(129, 218, 255, 0.16);
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 14, 40, 0.18);
  cursor: pointer;
}

.category-tabs .is-active {
  color: #fff;
  background: linear-gradient(135deg, #0068ff, #44b9ff);
}

.works-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(390px, 480px);
  gap: 34px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 32px 0 18px;
}

.work-card {
  min-width: 390px;
  scroll-snap-align: start;
  animation: workReveal 0.5s ease both;
}

.work-card[hidden] {
  display: none;
}

.work-card.is-revealing {
  animation: workReveal 0.5s ease both;
}

.work-card button {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #092556;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(3, 42, 97, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.work-card b {
  position: absolute;
  left: 50%;
  bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 11px;
  transform: translateX(-50%);
}

.work-card h3 {
  margin-top: 14px;
  font-size: 18px;
}

.work-card h3 {
  color: #f5fbff;
  font-size: 24px;
  text-shadow: 0 0 20px rgba(56, 223, 255, 0.14);
}

.work-card p {
  color: #cfe2f7;
  font-size: 17px;
}

.work-card button:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 62px rgba(3, 42, 97, 0.24), 0 0 28px rgba(34, 168, 255, 0.22);
}

.work-card button:hover img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.08);
}

.work-card button:hover .play-mark {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 108, 255, 0.56);
  box-shadow: 0 0 24px rgba(72, 190, 255, 0.55);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.flow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  padding: 28px 16px;
  text-align: center;
}

.flow-item:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -14px;
  color: var(--blue);
  font-size: 36px;
  font-weight: 700;
  transform: translateY(-50%);
}

.flow-number {
  color: #075bc2;
  font-size: 24px;
  font-weight: 900;
}

.flow-item img {
  width: 96px;
  height: 96px;
  margin: 18px 0;
}

.flow-item h3 {
  font-size: 16px;
}

.flow-item p {
  font-size: 13px;
}

.pricing-section {
  overflow: hidden;
  background-image: radial-gradient(circle at 20% 20%, rgba(43, 172, 255, 0.22), transparent 24%),
    radial-gradient(circle at 80% 38%, rgba(121, 82, 255, 0.22), transparent 22%),
    url("../assets/images/hero/hero_particle_bg.png");
  background-size: cover;
  background-position: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 28px;
}

.pricing-card {
  position: relative;
  padding: 46px 40px 38px;
  border: 1px solid rgba(80, 211, 255, 0.7);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(6, 28, 72, 0.9), rgba(2, 8, 28, 0.78));
  box-shadow: inset 0 0 34px rgba(22, 158, 255, 0.16), 0 0 38px rgba(22, 158, 255, 0.18);
}

.pricing-card.recommended {
  border-color: rgba(177, 154, 255, 0.95);
  transform: translateY(-18px);
  box-shadow: inset 0 0 44px rgba(30, 174, 255, 0.2), 0 0 58px rgba(58, 120, 255, 0.46);
}

.badge {
  position: absolute;
  top: 16px;
  left: 20px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.pricing-card h3 {
  margin: 0 0 12px;
  color: #eef7ff;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.pricing-card p {
  min-height: 58px;
  margin: 0;
  text-align: center;
  color: #dcecff;
  line-height: 1.75;
}

.pricing-card > img {
  width: 94px;
  height: 94px;
  margin: 34px auto 22px;
  filter: drop-shadow(0 0 20px rgba(57, 221, 255, 0.58));
}

.price {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(101, 197, 255, 0.4);
  color: #7cc9ff;
  font-size: 46px;
  font-weight: 900;
  text-align: center;
}

.price small {
  display: block;
  margin-top: 8px;
  color: #e3efff;
  font-size: 16px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: #f2f8ff;
  line-height: 1.55;
}

.pricing-card li::before {
  content: "•";
  margin-right: 10px;
  color: var(--cyan);
}

.button-line {
  width: 100%;
  color: var(--cyan);
  border: 1px solid rgba(128, 220, 255, 0.78);
  background: rgba(0, 64, 150, 0.26);
  box-shadow: inset 0 0 22px rgba(52, 195, 255, 0.16);
}

.pricing-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(79, 202, 255, 0.48);
  border-radius: 8px;
  background: rgba(0, 28, 72, 0.58);
  box-shadow: inset 0 0 24px rgba(39, 174, 255, 0.14);
}

.pricing-banner div {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid rgba(99, 180, 255, 0.3);
}

.pricing-banner div:last-child {
  border-right: 0;
}

.pricing-banner img {
  width: 48px;
  height: 48px;
}

.pricing-banner strong,
.pricing-banner small {
  display: block;
}

.pricing-banner strong {
  color: var(--cyan);
  font-size: 18px;
}

.pricing-banner small {
  margin-top: 8px;
  color: #deedff;
}

.pricing-note {
  margin: 30px 0 0;
  color: #dbe8fb;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  color: #0d2c5c;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.faq-item img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.faq-item b {
  color: #0d4c9d;
  font-size: 24px;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 24px 86px;
  color: #506a86;
  line-height: 1.8;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  color: #fff;
}

.contact-bg {
  background-color: #0b55b8;
  background-image: linear-gradient(90deg, rgba(0, 77, 174, 0.96), rgba(0, 77, 174, 0.8), rgba(0, 77, 174, 0.24)),
    url("../assets/images/contact/contact_bg.png");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 100%;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 85, 184, 0) 0%, rgba(11, 85, 184, 0.08) 43%, rgba(11, 85, 184, 0.72) 56%, rgba(11, 85, 184, 0.3) 68%, rgba(11, 85, 184, 0) 100%),
    radial-gradient(ellipse at 61% 50%, rgba(11, 85, 184, 0.66), transparent 29%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 340px;
}

.contact-grid h2 {
  color: #fff;
}

.contact-grid p:not(.script-label) {
  max-width: 620px;
  margin: 18px 0 26px;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 24px;
  font-weight: 800;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-points img {
  width: 28px;
  height: 28px;
}

.form-shell {
  padding: clamp(26px, 5vw, 54px);
}

.success-message {
  margin: 0 0 24px;
  padding: 16px 20px;
  border-radius: 8px;
  color: #075233;
  background: #e8fff3;
  font-weight: 800;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  color: #12315d;
  font-weight: 800;
}

.field em {
  margin-left: 6px;
  color: #fff;
  background: #006eff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-style: normal;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 77, 150, 0.18);
  border-radius: 8px;
  background: #f8fbff;
  color: #102548;
  outline: none;
}

input,
select {
  height: 54px;
  padding: 0 16px;
}

textarea {
  resize: vertical;
  padding: 16px;
  line-height: 1.7;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1687ff;
  box-shadow: 0 0 0 4px rgba(22, 135, 255, 0.12);
}

.error {
  color: #d92626;
  font-weight: 700;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 260px;
}

.footer {
  position: relative;
  padding: 48px 0 28px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.5fr 0.8fr 1fr 1.05fr;
  gap: 34px;
}

.footer h2 {
  margin: 0 0 12px;
  color: #0c2754;
  font-size: 15px;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 9px;
  color: #36516f;
  font-size: 14px;
  line-height: 1.6;
}

.footer-button {
  width: max-content;
  margin-top: 14px !important;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, #0068ff, #48b8ff);
  font-weight: 800;
}

.copyright {
  margin: 36px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 57, 120, 0.1);
  text-align: center;
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
  border: 1px solid rgba(90, 230, 255, 0.82);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.32), transparent 22%),
    linear-gradient(135deg, #00d7ff 0%, #0078ff 48%, #7438ff 100%);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(43, 194, 255, 0.12), 0 0 34px rgba(56, 223, 255, 0.56), 0 18px 42px rgba(4, 20, 70, 0.32);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
  animation: cyberFloat 3.2s ease-in-out infinite;
}

.page-top span,
.page-top strong {
  display: block;
}

.page-top span {
  margin-bottom: -7px;
  font-size: 34px;
  line-height: 0.8;
}

.page-top strong {
  font-size: 19px;
  letter-spacing: 0;
}

.page-top:hover {
  animation-play-state: paused;
  transform: translateY(-6px);
  box-shadow: 0 0 0 8px rgba(43, 194, 255, 0.16), 0 0 46px rgba(56, 223, 255, 0.72), 0 20px 52px rgba(4, 20, 70, 0.38);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 8, 24, 0.78);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.reveal {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes workReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 1120px) {
  .global-nav {
    gap: 14px;
    font-size: 13px;
  }

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

  .hero-media {
    min-height: 420px;
  }

  .worry-grid,
  .feature-grid,
  .pricing-grid,
  .pricing-banner,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card.recommended {
    transform: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .menu-button {
    display: block;
  }

  .global-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 44px rgba(0, 25, 70, 0.14);
    transform: translateY(-130%);
    transition: transform 0.24s ease;
  }

  .global-nav.is-open {
    transform: translateY(0);
  }

  .global-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(9, 64, 130, 0.08);
  }

  .nav-cta {
    margin-top: 12px;
  }

  .container {
    width: min(100% - 32px, 680px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 0;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    align-items: end;
    gap: 12px;
    min-height: auto;
    margin-top: 10px;
  }

  .thumb-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    height: auto;
  }

  .thumb-1 {
    width: 100%;
    aspect-ratio: 1.24 / 1;
    grid-column: 1;
    grid-row: 1;
  }

  .thumb-2 {
    width: 100%;
    aspect-ratio: 1.72 / 1;
    grid-column: 2;
    grid-row: 1;
  }

  .thumb-3 {
    width: 100%;
    aspect-ratio: 1.36 / 1;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .thumb-4 {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    grid-column: 2;
    grid-row: 3;
  }

  .hero-feature-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
    padding: 16px;
  }

  .hero-feature-bar span {
    justify-content: flex-start;
    border-right: 0;
    font-size: 15px;
  }

  .about-grid,
  form,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 28px;
  }

  .worry-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .mini-card {
    scroll-snap-align: start;
  }

  .feature-grid,
  .pricing-grid,
  .pricing-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-banner div {
    border-right: 0;
    border-bottom: 1px solid rgba(99, 180, 255, 0.3);
  }

  .pricing-banner div:last-child {
    border-bottom: 0;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-item {
    min-height: auto;
    align-items: flex-start;
    text-align: left;
    padding: 28px 20px 28px 140px;
  }

  .flow-item img {
    position: absolute;
    left: 24px;
    top: 66px;
  }

  .flow-item:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 68px;
    bottom: -30px;
    transform: rotate(90deg);
  }

  .contact-bg {
    background-image: linear-gradient(90deg, rgba(0, 51, 128, 0.97), rgba(0, 69, 158, 0.9), rgba(0, 69, 158, 0.52)), url("../assets/images/contact/contact_bg.png");
    background-position: center, right center;
    background-size: cover, auto 100%;
  }

  .contact-bg::after {
    background:
      linear-gradient(90deg, rgba(0, 69, 158, 0.16) 0%, rgba(0, 69, 158, 0.62) 50%, rgba(0, 69, 158, 0.12) 100%),
      radial-gradient(ellipse at 64% 50%, rgba(0, 69, 158, 0.58), transparent 34%);
  }

  .contact-grid {
    min-height: 430px;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-actions {
    gap: 12px;
  }

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

  .section-heading h2,
  .about-grid h2,
  .contact-grid h2 {
    font-size: 28px;
  }

  .section-heading span,
  .about-grid p:not(.script-label),
  .contact-grid p:not(.script-label) {
    font-size: 16px;
  }

  .price {
    font-size: 38px;
  }

  .pricing-card {
    padding: 40px 24px 30px;
  }

  .worry-grid {
    grid-auto-columns: 88%;
  }

  .contact-points {
    display: grid;
  }
}
