/* ==================================================
   NILESH SHREEVASTAV WEBSITE - FINAL STYLE.CSS
   Updated with clean contact form labels + country code
================================================== */

:root {
  --bg: #050611;
  --bg2: #070819;
  --card: rgba(255, 255, 255, 0.075);
  --card2: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b9c2df;
  --yellow: #ffe600;
  --pink: #ff2f92;
  --purple: #7c3aed;
  --dark: #070812;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 26px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 230, 0, 0.08), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(124, 58, 237, 0.24), transparent 32%),
    radial-gradient(circle at 18% 90%, rgba(255, 47, 146, 0.14), transparent 30%),
    linear-gradient(180deg, #050611 0%, #070819 42%, #050611 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -4;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 230, 0, 0.12), transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(124, 58, 237, 0.26), transparent 22%),
    radial-gradient(circle at 55% 80%, rgba(255, 47, 146, 0.16), transparent 25%);
  filter: blur(28px);
  animation: finalBgFloat 16s ease-in-out infinite alternate;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 78%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

mark {
  background: transparent;
  color: var(--yellow);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none !important;
  opacity: 0.82;
}

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,230,0,.12), transparent 65%);
  pointer-events: none !important;
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
}

.scroll-line {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  z-index: 999999;
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--purple));
}

/* ==================================================
   HEADER
================================================== */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 99999;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(5, 6, 17, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}

.header.scrolled {
  background: rgba(5, 6, 17, 0.94);
  box-shadow: 0 12px 40px rgba(0,0,0,.24);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo,
.site-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  color: #fff !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.logo-box {
  width: 39px !important;
  height: 39px !important;
  min-width: 39px !important;
  border-radius: 12px !important;
  background: #ffe600 !important;
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
  box-shadow:
    0 0 0 5px rgba(255, 230, 0, 0.08),
    0 0 30px rgba(255, 230, 0, 0.28) !important;
}

.logo-box::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 18px;
  background: #070812;
  left: -9px;
  top: 10px;
  transform: rotate(-45deg);
  border-radius: 20px;
}

.logo-box span {
  display: none !important;
}

.logo-text {
  display: grid !important;
  gap: 1px !important;
}

.logo-text strong {
  font-size: 15px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
}

.logo-text small {
  display: block !important;
  font-size: 11px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
}

.logo-mark {
  display: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 750;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 950;
  box-shadow: 0 14px 38px rgba(255,230,0,.18);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  margin: 5px auto;
}

/* ==================================================
   BUTTONS
================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 18px 50px rgba(255,230,0,.18);
}

.btn-yellow:hover {
  box-shadow:
    0 18px 50px rgba(255,230,0,.25),
    0 0 34px rgba(255,230,0,.18);
}

.btn-dark {
  background: rgba(255,255,255,.08);
  color: white;
  border-color: rgba(255,255,255,.12);
}

.btn-dark:hover {
  box-shadow:
    0 18px 45px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.16);
}

/* ==================================================
   HERO
================================================== */

.hero,
.blog-hero,
.blog-detail-hero {
  padding-top: 100px !important;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto !important;
  padding-bottom: 60px !important;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 230, 0, 0.12), transparent 18%),
    radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.28), transparent 24%),
    radial-gradient(circle at 25% 70%, rgba(255, 47, 146, 0.13), transparent 28%);
  animation: heroAura 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 65% 42%, black, transparent 74%);
  animation: gridDrift 22s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.intro {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 16px;
}

.intro strong {
  color: var(--yellow);
}

.hero-copy h1,
.blog-hero h1,
.blog-detail-wrap h1 {
  font-family: "Archivo Black", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(46px, 7vw, 96px);
  max-width: 780px;
}

.hero-copy h1 span {
  display: block;
  color: var(--yellow);
}

.hero-text {
  margin-top: 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 130px));
  gap: 14px;
}

.trust div {
  padding: 17px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
}

.trust b {
  display: block;
  font-size: 24px;
  color: var(--yellow);
}

.trust small {
  color: var(--muted);
  font-weight: 750;
}

/* ==================================================
   SINGLE HERO IMAGE + ORBITS
================================================== */

.hero-single-visual {
  position: relative;
  min-height: 560px;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
}

.hero .hero-single-visual {
  min-height: 560px !important;
  margin-top: -10px !important;
  transform: translateX(-10px) translateY(-8px);
}

.single-blob {
  position: absolute;
  width: min(560px, 42vw);
  height: min(560px, 42vw);
  border-radius: 38% 62% 55% 45% / 45% 42% 58% 55%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 230, 0, .9), transparent 16%),
    linear-gradient(135deg, #ff7a18 0%, #ff2f92 45%, #7c3aed 100%);
  box-shadow:
    0 0 90px rgba(255, 47, 146, .35),
    0 0 120px rgba(124, 58, 237, .28);
  animation: singleBlobMorph 8s ease-in-out infinite;
  z-index: 1;
}

.single-hero-person {
  position: relative;
  z-index: 5;
  width: min(390px, 31vw);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 28px 55px rgba(0, 0, 0, .55))
    drop-shadow(0 0 22px rgba(255, 230, 0, .12));
  animation: singlePersonFloat 5.2s ease-in-out infinite;
}

.single-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
}

.orbit-one {
  width: min(610px, 92vw);
  height: min(380px, 56vw);
  border: 1.5px dashed rgba(255, 230, 0, .42);
  animation: orbitRotateA 16s linear infinite;
}

.orbit-two {
  width: min(520px, 82vw);
  height: min(320px, 50vw);
  border: 1.5px solid rgba(255, 255, 255, .16);
  animation: orbitRotateB 12s linear infinite reverse;
}

.orbit-three {
  width: min(440px, 72vw);
  height: min(250px, 44vw);
  border: 1.5px solid rgba(255, 47, 146, .28);
  animation: orbitRotateC 9s linear infinite;
}

.orbit-label {
  position: absolute;
  z-index: 8;
  padding: 11px 15px;
  border-radius: 14px;
  background: rgba(15, 15, 28, .78);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: orbitLabelFloat 4.4s ease-in-out infinite;
}

.orbit-label-one {
  left: 18%;
  top: 24%;
}

.orbit-label-two {
  right: 7%;
  top: 32%;
  animation-delay: .8s;
}

.orbit-label-three {
  left: 18%;
  bottom: 26%;
  animation-delay: 1.2s;
}

.orbit-label-four {
  right: 15%;
  bottom: 23%;
  animation-delay: 1.6s;
}

.single-sticker {
  position: absolute;
  z-index: 9;
  background: #fff;
  color: #070812;
  border-radius: 18px;
  padding: 13px 17px;
  font-size: 20px;
  font-weight: 1000;
  line-height: .95;
  text-transform: uppercase;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .32);
  animation: stickerFloat 4.8s ease-in-out infinite;
}

.single-sticker span {
  color: var(--pink);
}

.sticker-left {
  left: 5%;
  top: 42%;
  transform: rotate(-8deg);
}

.sticker-right {
  right: 2%;
  top: 14%;
  transform: rotate(8deg);
  animation-delay: 1.1s;
}

.hero-circle,
.hero-blob {
  display: none !important;
}

/* ==================================================
   MARQUEE
================================================== */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.marquee-track {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 26s linear infinite;
}

.marquee span {
  color: var(--yellow);
  font-weight: 950;
  white-space: nowrap;
}

/* ==================================================
   GENERAL SECTIONS
================================================== */

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head span,
.ai-standard-copy > span,
.about-copy > span,
.contact-copy > span,
.blog-label,
.blog-cta-box span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255,230,0,.08);
  border: 1px solid rgba(255,230,0,.18);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-head h2,
.ai-standard-copy h2,
.about-copy h2,
.contact-copy h2,
.blog-cta-box h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.section-head p,
.ai-standard-copy p,
.about-copy p,
.contact-copy p,
.blog-cta-box p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

/* ==================================================
   CARDS
================================================== */

.standard-grid,
.process-grid,
.metrics,
.package-grid,
.why-grid,
.blog-grid,
.portfolio-grid {
  display: grid;
  gap: 22px;
}

.standard-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid,
.metrics,
.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.package-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid {
  grid-template-columns: repeat(2, 1fr);
}

.standard-card,
.portfolio-card,
.package,
.process-step,
.metric,
.why-card,
.blog-card,
.blog-article,
.ai-standard-panel,
.contact-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--card), var(--card2));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

.standard-card:hover,
.portfolio-card:hover,
.package:hover,
.process-step:hover,
.metric:hover,
.why-card:hover,
.blog-card:hover,
.ai-standard-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(255,230,0,.34);
  box-shadow:
    0 28px 80px rgba(0,0,0,.38),
    0 0 42px rgba(124,58,237,.12);
}

.standard-card::before,
.portfolio-card::before,
.package::before,
.process-step::before,
.metric::before,
.why-card::before,
.blog-card::before,
.ai-standard-panel::before,
.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(255,230,0,.13),
      transparent 34%
    );
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.standard-card:hover::before,
.portfolio-card:hover::before,
.package:hover::before,
.process-step:hover::before,
.metric:hover::before,
.why-card:hover::before,
.blog-card:hover::before,
.ai-standard-panel:hover::before,
.contact-box:hover::before {
  opacity: 1;
}

.standard-card,
.package,
.process-step,
.metric,
.why-card {
  padding: 28px;
}

.standard-icon,
.why-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 1000;
  margin-bottom: 18px;
}

.standard-card h3,
.package h3,
.process-step h3,
.why-card h3,
.portfolio-body h3,
.blog-body h2 {
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.standard-card p,
.package p,
.process-step p,
.why-card p,
.portfolio-body p,
.blog-body p {
  color: var(--muted);
  line-height: 1.7;
}

.standard-card ul,
.package ul {
  margin-top: 18px;
  padding-left: 18px;
  color: #dfe6ff;
  line-height: 1.9;
}

/* ==================================================
   AI SECTION
================================================== */

.ai-standard {
  background: rgba(255,255,255,.025);
  padding: 78px 0 !important;
}

.ai-standard-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr !important;
  gap: 34px !important;
  align-items: center !important;
}

.ai-standard-copy h2 {
  font-size: clamp(38px, 5.2vw, 66px) !important;
  line-height: 0.98 !important;
  max-width: 620px !important;
}

.ai-standard-copy p {
  max-width: 610px !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
}

.ai-feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  max-width: 620px !important;
}

.ai-feature-list div,
.ai-mini-cards div,
.about-points div,
.contact-highlights div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.ai-feature-list b,
.ai-mini-cards b,
.about-points b,
.contact-highlights b {
  display: block;
  margin-bottom: 5px;
}

.ai-feature-list small,
.ai-mini-cards small,
.about-points small,
.contact-highlights small {
  color: var(--muted);
  line-height: 1.55;
}

.ai-standard-panel {
  padding: 28px !important;
  border-radius: 28px !important;
  max-width: 590px !important;
  margin-left: auto !important;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  align-items: center !important;
}

.panel-top span {
  color: var(--yellow);
  font-weight: 950;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr !important;
  gap: 10px !important;
  align-items: center;
  margin-bottom: 24px;
}

.workflow div {
  padding: 14px 12px !important;
  text-align: center;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  font-weight: 850;
  min-height: 50px !important;
  display: grid !important;
  place-items: center !important;
  white-space: nowrap !important;
}

.workflow span {
  width: 24px !important;
  height: 2px !important;
  background: var(--yellow);
}

.ai-mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
}

.ai-mini-cards div {
  min-height: 112px !important;
  padding: 18px !important;
}

/* ==================================================
   RESULTS
================================================== */

.metric {
  text-align: center;
}

.metric b {
  display: block;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--yellow);
  letter-spacing: -0.05em;
}

.metric p {
  color: var(--muted);
  font-weight: 800;
}

/* ==================================================
   PORTFOLIO
================================================== */

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.portfolio-filter button {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.portfolio-filter button.active,
.portfolio-filter button:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

.portfolio-card.hide {
  display: none;
}

.portfolio-image,
.blog-image {
  height: 220px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.portfolio-image::before,
.blog-image::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,230,0,.45), transparent 22%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.2), transparent 20%);
  animation: imageGlowMove 7s ease-in-out infinite alternate;
}

.portfolio-image span {
  position: relative;
  z-index: 2;
  color: white;
  font-weight: 1000;
  font-size: 24px;
}

.portfolio-body,
.blog-body {
  padding: 24px;
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--yellow);
  font-weight: 950;
  margin-bottom: 14px;
}

.case-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.case-points small {
  color: var(--yellow);
  font-weight: 950;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tool-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #eaf0ff;
  font-size: 12px;
  font-weight: 800;
}

.outcome {
  margin-top: 18px;
  color: #eaf0ff;
}

.ai-project {
  background: linear-gradient(135deg, #7c3aed, #ff2f92);
}

.website-project {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.marketing-project {
  background: linear-gradient(135deg, #ff2f92, #ff7a18);
}

.dashboard-project {
  background: linear-gradient(135deg, #0891b2, #7c3aed);
}

/* Uploaded frontend images */
.uploaded-blog-image,
.uploaded-project-image {
  position: relative;
  overflow: hidden;
  background: #070812;
}

.uploaded-blog-image img,
.uploaded-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease, filter .45s ease;
}

.uploaded-blog-image::before,
.uploaded-project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 35%, rgba(5,6,17,.78)),
    radial-gradient(circle at 20% 10%, rgba(255,230,0,.16), transparent 28%);
  pointer-events: none;
}

.uploaded-blog-image:hover img,
.uploaded-project-image:hover img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.08);
}

.uploaded-project-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 6, 17, .78);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.uploaded-blog-image::after,
.uploaded-project-image::after {
  display: none;
}

/* ==================================================
   PACKAGES
================================================== */

.package.featured {
  background:
    radial-gradient(circle at 30% 0%, rgba(255,230,0,.18), transparent 34%),
    linear-gradient(145deg, rgba(124,58,237,.38), rgba(255,47,146,.22));
  border-color: rgba(255,230,0,.36);
}

.package > span {
  display: inline-flex;
  margin-bottom: 15px;
  color: var(--yellow);
  font-weight: 950;
}

/* ==================================================
   ABOUT
================================================== */

.about {
  padding-top: 56px !important;
  padding-bottom: 64px !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 14px !important;
  align-items: center;
}

.about-img {
  display: grid;
  place-items: center;
  min-height: 390px !important;
  overflow: visible;
}

.about-visual-wrap {
  position: relative;
  width: min(440px, 100%);
  height: 390px !important;
  transform: translateY(-10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-glow {
  position: absolute;
  width: 340px !important;
  height: 340px !important;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 230, 0, 0.26), transparent 60%);
  filter: blur(18px);
  z-index: 1;
  animation: aboutGlowPulse 4s ease-in-out infinite;
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.about-ring-one {
  width: 330px !important;
  height: 330px !important;
  border: 1.5px solid rgba(255, 230, 0, 0.28);
  animation: aboutRotateOne 16s linear infinite;
}

.about-ring-two {
  width: 395px !important;
  height: 395px !important;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  animation: aboutRotateTwo 20s linear infinite reverse;
}

.about-square {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  z-index: 2;
}

.about-square-one {
  width: 110px;
  height: 110px;
  left: 10px;
  top: 48px;
  transform: rotate(-10deg);
}

.about-square-two {
  width: 90px;
  height: 90px;
  right: 10px;
  bottom: 40px;
  transform: rotate(12deg);
}

.about-image-frame {
  position: relative;
  z-index: 4;
  width: 300px !important;
  min-height: 360px !important;
  border-radius: 34px;
  padding: 12px 16px 0 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 24px 60px rgba(0,0,0,.35),
    0 0 30px rgba(124,58,237,.12);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,230,0,.08), transparent 35%),
    radial-gradient(circle at top right, rgba(255,47,146,.12), transparent 30%);
  pointer-events: none;
}

.about-image-frame img {
  position: relative;
  z-index: 2;
  width: 116% !important;
  max-width: none !important;
  max-height: 390px !important;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
  transform: translateY(18px);
  filter:
    drop-shadow(0 20px 36px rgba(0,0,0,.45))
    drop-shadow(0 0 16px rgba(255,230,0,.08));
}

.about-card-tag {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: rgba(10, 12, 28, 0.86);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.26);
  white-space: nowrap;
}

.about-tag-top {
  top: 4px !important;
  left: 50%;
  transform: translateX(-50%);
  color: var(--yellow);
}

.about-tag-left {
  left: -24px !important;
  bottom: 92px !important;
}

.about-tag-right {
  right: -24px !important;
  top: 128px !important;
}

.about-copy h2 {
  max-width: 700px;
}

.about-copy p {
  max-width: 720px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

/* ==================================================
   CONTACT
================================================== */

.contact {
  padding: 92px 0;
}

.contact-box {
  padding: 38px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
}

.contact-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form .form-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: start !important;
}

.contact-form label {
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
  min-width: 0 !important;
  color: #eaf0ff;
  font-size: 13px;
  font-weight: 850;
}

.field-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  width: max-content !important;
}

.required-star {
  display: inline !important;
  color: #ff3b3b !important;
  font-size: 15px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.contact-form label small {
  display: none !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
  color: white;
  border-radius: 16px;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.contact-form input,
.contact-form select {
  height: 58px !important;
  min-height: 58px !important;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form option {
  color: var(--dark);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(255,230,0,.75);
  box-shadow: 0 0 0 4px rgba(255,230,0,.11);
  background: rgba(255,255,255,.095);
}

#formNote {
  color: var(--muted);
}

/* Country code phone field */
.phone-field {
  display: grid !important;
  grid-template-columns: 100px minmax(0, 1fr) !important;
  gap: 12px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.phone-field select,
.phone-field input {
  width: 100% !important;
  height: 58px !important;
  min-height: 58px !important;
  border-radius: 16px !important;
}

.phone-field select {
  padding: 0 14px !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  border-color: rgba(255,230,0,.55) !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.phone-field input {
  padding: 0 16px !important;
  font-size: 14px !important;
}

.phone-field option {
  color: #070812 !important;
  background: #ffffff !important;
}

/* ==================================================
   BLOG
================================================== */

.blog-hero {
  min-height: auto !important;
  padding: 100px 0 55px !important;
  overflow: hidden;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 35px;
  align-items: center !important;
  min-height: auto !important;
}

.blog-hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  margin-top: 20px !important;
}

.blog-hero p {
  margin-top: 20px;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.blog-hero .hero-single-visual {
  min-height: 430px !important;
  margin-top: 0 !important;
  transform: translateY(-12px);
}

.blog-hero .single-hero-person {
  width: min(360px, 38vw);
}

.blog-hero .single-blob {
  width: min(470px, 44vw);
  height: min(470px, 44vw);
}

.blog-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--yellow);
  font-weight: 950;
}

.blog-cta {
  padding: 70px 0 95px;
}

.blog-cta-box {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(110deg, #5b21b6, #c026d3, #fb3f83);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.ai-blog {
  background: linear-gradient(135deg, #7c3aed, #ff2f92);
}

.marketing-blog {
  background: linear-gradient(135deg, #ff2f92, #ff7a18);
}

.automation-blog {
  background: linear-gradient(135deg, #0891b2, #7c3aed);
}

.brand-blog {
  background: linear-gradient(135deg, #f59e0b, #ff2f92);
}

.analytics-blog {
  background: linear-gradient(135deg, #0ea5e9, #7c3aed);
}

.web-blog {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* ==================================================
   BLOG DETAIL
================================================== */

.blog-detail-hero {
  min-height: auto !important;
  padding: 110px 0 65px !important;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,47,146,.22), transparent 28%),
    radial-gradient(circle at 20% 75%, rgba(124,58,237,.22), transparent 32%),
    linear-gradient(180deg, #070819, #050611);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.blog-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  animation: gridDrift 18s linear infinite;
}

.blog-detail-wrap {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-top: 0 !important;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--yellow);
  font-weight: 900;
}

.blog-detail-wrap h1 {
  font-size: clamp(42px, 6vw, 78px);
  margin: 20px 0 22px !important;
}

.blog-detail-wrap p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.blog-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #dce3ff;
  font-weight: 800;
  margin-top: 22px;
}

.blog-detail-section {
  background: #050611;
}

.blog-detail-featured-image {
  max-width: 980px;
  height: 430px;
  margin: -40px auto 34px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    0 28px 80px rgba(0,0,0,.42),
    0 0 45px rgba(124,58,237,.14);
  background: #070812;
}

.blog-detail-featured-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 45%, rgba(5,6,17,.58)),
    radial-gradient(circle at 20% 10%, rgba(255,230,0,.12), transparent 30%);
  pointer-events: none;
}

.blog-detail-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease, filter .5s ease;
}

.blog-detail-featured-image:hover img {
  transform: scale(1.04);
  filter: brightness(1.06) saturate(1.08);
}

.blog-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px;
}

.blog-article p {
  color: #dfe6ff;
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 22px;
}

.blog-article p:first-child::first-letter {
  font-size: 58px;
  float: left;
  line-height: .9;
  padding-right: 10px;
  color: var(--yellow);
  font-family: "Archivo Black", Inter, sans-serif;
}

.blog-article-cta {
  margin-top: 36px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(110deg, #5b21b6, #c026d3, #fb3f83);
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
}

.blog-article-cta h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  letter-spacing: -.05em;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
  margin: 0 0 12px;
}

.blog-article-cta p {
  color: rgba(255,255,255,.82);
  margin-bottom: 22px;
}

/* ==================================================
   FOOTER
================================================== */

.footer {
  padding: 62px 0 28px;
  background: rgba(0,0,0,.24);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 390px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col h4 {
  margin-bottom: 8px;
  color: var(--yellow);
}

.footer-col a {
  color: var(--muted);
  font-weight: 750;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

/* ==================================================
   ADVANCED SHUU AI ASSISTANT
================================================== */

.shuu-assistant {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 2147483647 !important;
  font-family: Inter, Arial, sans-serif !important;
  pointer-events: auto !important;
}

.shuu-assistant * {
  pointer-events: auto !important;
}

.shuu-greeting {
  position: absolute;
  right: 76px;
  bottom: 18px;
  width: 220px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 10, 24, .92);
  color: white;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: shuuGreetingFloat 3.8s ease-in-out infinite;
}

.shuu-greeting.hide {
  display: none;
}

.shuu-btn {
  width: 68px !important;
  height: 68px !important;
  border-radius: 50% !important;
  border: 0 !important;
  background:
    radial-gradient(circle at 30% 25%, #ffe600, transparent 30%),
    linear-gradient(135deg, #ff2f92, #7c3aed) !important;
  color: #fff !important;
  font-weight: 950 !important;
  cursor: pointer !important;
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  box-shadow:
    0 20px 55px rgba(124,58,237,.48),
    0 0 48px rgba(255,47,146,.28),
    inset 0 1px 0 rgba(255,255,255,.25) !important;
  animation: shuuFloat 3.2s ease-in-out infinite !important;
  z-index: 2 !important;
}

.shuu-icon {
  position: relative !important;
  z-index: 2 !important;
  font-size: 20px !important;
  letter-spacing: -.04em !important;
}

.shuu-pulse {
  position: absolute !important;
  inset: -8px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,230,0,.55) !important;
  animation: shuuPulse 1.8s ease-in-out infinite !important;
}

.shuu-chatbox {
  position: absolute !important;
  right: 0 !important;
  bottom: 86px !important;
  width: 390px !important;
  max-width: calc(100vw - 28px) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(124,58,237,.22), transparent 32%),
    linear-gradient(145deg, rgba(13,15,32,.98), rgba(5,6,17,.98)) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow:
    0 30px 90px rgba(0,0,0,.58),
    0 0 40px rgba(124,58,237,.16) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  transform: translateY(18px) scale(.96) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: .25s ease !important;
}

.shuu-chatbox.open {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.shuu-header {
  padding: 18px !important;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,230,0,.25), transparent 36%),
    linear-gradient(135deg, rgba(124,58,237,.9), rgba(255,47,146,.72)) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 14px !important;
}

.shuu-header b {
  display: block !important;
  color: white !important;
  font-size: 18px !important;
  font-weight: 950 !important;
}

.shuu-header small {
  display: block !important;
  color: rgba(255,255,255,.82) !important;
  margin-top: 4px !important;
  line-height: 1.4 !important;
  font-size: 12px !important;
}

.shuu-header button {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 0 !important;
  background: rgba(255,255,255,.18) !important;
  color: white !important;
  font-size: 22px !important;
  cursor: pointer !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
}

.shuu-language {
  display: flex !important;
  gap: 8px !important;
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
  background: rgba(0,0,0,.18) !important;
}

.shuu-language button {
  flex: 1 !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  background: rgba(255,255,255,.06) !important;
  color: white !important;
  border-radius: 999px !important;
  padding: 8px 10px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

.shuu-language button.active {
  background: #ffe600 !important;
  color: #070812 !important;
  border-color: #ffe600 !important;
}

.shuu-body {
  padding: 18px !important;
  max-height: 340px !important;
  overflow-y: auto !important;
  display: grid !important;
  gap: 12px !important;
}

.shuu-message {
  padding: 12px 13px !important;
  border-radius: 16px !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  max-width: 92% !important;
}

.shuu-message.bot {
  background: rgba(255,255,255,.075) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: #e8ecff !important;
  border-bottom-left-radius: 4px !important;
}

.shuu-message.user {
  background: #ffe600 !important;
  color: #070812 !important;
  justify-self: end !important;
  border-bottom-right-radius: 4px !important;
  font-weight: 800 !important;
}

.shuu-message.recommendation {
  border: 1px solid rgba(255,230,0,.28) !important;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,230,0,.14), transparent 30%),
    rgba(255,255,255,.075) !important;
}

.shuu-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.shuu-actions button {
  border: 1px solid rgba(255,255,255,.12) !important;
  background: rgba(255,255,255,.06) !important;
  color: white !important;
  padding: 8px 10px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  cursor: pointer !important;
}

.shuu-actions button:hover {
  background: #ffe600 !important;
  color: #070812 !important;
}

.shuu-form {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 10px !important;
  padding: 14px !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
  background: rgba(0,0,0,.18) !important;
}

.shuu-form input {
  border: 1px solid rgba(255,255,255,.13) !important;
  background: rgba(255,255,255,.07) !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 12px !important;
  outline: none !important;
  width: 100% !important;
}

.shuu-form button {
  border: 0 !important;
  background: #ffe600 !important;
  color: #070812 !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  font-weight: 950 !important;
  cursor: pointer !important;
}

.shuu-lead-form {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.20);
  gap: 10px;
}

.shuu-lead-form.open {
  display: grid;
}

.shuu-form-title {
  color: #fff;
  font-weight: 950;
  margin-bottom: 3px;
}

.shuu-lead-form input,
.shuu-lead-form textarea,
.shuu-lead-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
  color: white;
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
  font-family: inherit;
  font-size: 13px;
}

.shuu-lead-form textarea {
  min-height: 70px;
  resize: vertical;
}

.shuu-lead-form option {
  color: #070812;
  background: white;
}

.shuu-phone-field {
  display: grid !important;
  grid-template-columns: 125px 1fr !important;
  gap: 8px !important;
}

.shuu-phone-field select,
.shuu-phone-field input {
  min-height: 44px !important;
  height: 44px !important;
}

.shuu-phone-field select {
  font-size: 12px !important;
  padding: 0 10px !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shuu-phone-field input {
  padding: 0 12px !important;
}

.shuu-lead-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.shuu-lead-actions button {
  border: 0;
  border-radius: 12px;
  padding: 11px 12px;
  font-weight: 950;
  cursor: pointer;
}

.shuu-lead-actions button:first-child {
  background: #ffe600;
  color: #070812;
}

.shuu-lead-actions button:last-child {
  background: rgba(255,255,255,.10);
  color: white;
  border: 1px solid rgba(255,255,255,.12);
}

/* ==================================================
   REVEAL
================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .22s;
}

.delay-3 {
  transition-delay: .32s;
}

.delay-4 {
  transition-delay: .42s;
}

/* ==================================================
   KEYFRAMES
================================================== */

@keyframes finalBgFloat {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(2%, 1%, 0) scale(1.06);
  }
}

@keyframes heroAura {
  0% {
    filter: hue-rotate(0deg);
    transform: scale(1);
  }

  100% {
    filter: hue-rotate(10deg);
    transform: scale(1.04);
  }
}

@keyframes gridDrift {
  to {
    background-position: 46px 46px;
  }
}

@keyframes singleBlobMorph {
  0%, 100% {
    border-radius: 38% 62% 55% 45% / 45% 42% 58% 55%;
    transform: rotate(0deg) scale(1);
  }

  50% {
    border-radius: 58% 42% 38% 62% / 55% 58% 42% 45%;
    transform: rotate(6deg) scale(1.04);
  }
}

@keyframes singlePersonFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.015);
  }
}

@keyframes orbitRotateA {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitRotateB {
  0% {
    transform: translate(-50%, -50%) rotate(12deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(372deg);
  }
}

@keyframes orbitRotateC {
  0% {
    transform: translate(-50%, -50%) rotate(-16deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(344deg);
  }
}

@keyframes orbitLabelFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes stickerFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes imageGlowMove {
  0% {
    transform: scale(1) rotate(0deg);
    filter: hue-rotate(0deg);
  }

  100% {
    transform: scale(1.08) rotate(1deg);
    filter: hue-rotate(12deg);
  }
}

@keyframes aboutRotateOne {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes aboutRotateTwo {
  0% {
    transform: rotate(18deg);
  }

  100% {
    transform: rotate(378deg);
  }
}

@keyframes aboutGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: .9;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes shuuFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes shuuPulse {
  0% {
    opacity: .8;
    transform: scale(.9);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes shuuGreetingFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (min-width: 901px) {
  .ai-standard {
    padding-bottom: 105px !important;
  }
}

@media (max-width: 1100px) {
  .standard-grid,
  .package-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .metrics,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-standard-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .ai-standard-copy h2,
  .ai-standard-copy p,
  .ai-feature-list,
  .ai-standard-panel {
    max-width: 100% !important;
  }

  .ai-standard-panel {
    margin-left: 0 !important;
  }
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: 20px;
    background:
      radial-gradient(circle at 80% 15%, rgba(124,58,237,.22), transparent 28%),
      rgba(5,6,17,.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.42);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,.07);
  }

  .hero,
  .blog-hero,
  .blog-detail-hero {
    padding-top: 95px !important;
  }

  .hero-grid,
  .blog-hero-grid,
  .ai-standard-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero .hero-single-visual,
  .blog-hero .hero-single-visual {
    min-height: 440px !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  .single-hero-person,
  .hero .single-hero-person,
  .blog-hero .single-hero-person {
    width: min(330px, 62vw);
  }

  .single-blob,
  .hero .single-blob,
  .blog-hero .single-blob {
    width: min(420px, 78vw);
    height: min(420px, 78vw);
  }

  .orbit-one {
    width: min(470px, 90vw);
    height: min(290px, 58vw);
  }

  .orbit-two {
    width: min(410px, 84vw);
    height: min(245px, 50vw);
  }

  .orbit-three {
    width: min(350px, 74vw);
    height: min(205px, 44vw);
  }

  .orbit-label {
    font-size: 11px;
    padding: 8px 10px;
  }

  .single-sticker {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-img {
    min-height: 360px;
  }

  .about-visual-wrap {
    transform: none;
    width: min(400px, 100%);
    height: 360px !important;
  }

  .about-image-frame {
    width: 260px !important;
    min-height: 315px !important;
  }

  .about-image-frame img {
    width: 112% !important;
    max-height: 330px !important;
  }

  .about-tag-left {
    left: 0 !important;
    bottom: 85px !important;
  }

  .about-tag-right {
    right: 0 !important;
    top: 115px !important;
  }

  .blog-detail-hero {
    padding-bottom: 50px !important;
  }
}

@media (max-width: 700px) {
  .cursor-glow {
    display: none;
  }

  #particles {
    opacity: .45;
  }

  .section {
    padding: 72px 0;
  }

  .hero,
  .blog-hero {
    padding: 90px 0 42px !important;
  }

  .blog-detail-hero {
    padding: 95px 0 45px !important;
  }

  .hero .hero-single-visual,
  .blog-hero .hero-single-visual {
    min-height: 350px !important;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .trust div {
    padding: 14px 10px;
  }

  .standard-grid,
  .process-grid,
  .metrics,
  .package-grid,
  .why-grid,
  .blog-grid,
  .portfolio-grid,
  .footer-grid,
  .form-row,
  .about-points,
  .ai-mini-cards {
    grid-template-columns: 1fr !important;
  }

  .workflow {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .workflow span {
    width: 2px !important;
    height: 22px !important;
    justify-self: center !important;
  }

  .ai-standard {
    padding: 64px 0 !important;
  }

  .ai-standard-copy h2 {
    font-size: clamp(36px, 12vw, 54px) !important;
  }

  .ai-standard-panel {
    padding: 22px !important;
  }

  .ai-mini-cards div {
    min-height: auto !important;
  }

  .about {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-img {
    min-height: 320px;
  }

  .about-visual-wrap {
    width: 100%;
    height: 320px;
  }

  .about-ring-one {
    width: 250px !important;
    height: 250px !important;
  }

  .about-ring-two {
    width: 305px !important;
    height: 305px !important;
  }

  .about-image-frame {
    width: 225px !important;
    min-height: 275px !important;
    padding: 14px 14px 0 !important;
    border-radius: 24px;
  }

  .about-image-frame img {
    width: 112% !important;
    max-height: 285px !important;
    transform: translateY(14px);
  }

  .about-card-tag {
    font-size: 10px;
    padding: 8px 10px;
  }

  .about-tag-left,
  .about-tag-right {
    display: none;
  }

  .contact-box {
    padding: 24px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }

  .phone-field {
    grid-template-columns: 1fr !important;
  }

  .blog-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-detail-featured-image {
    height: 250px;
    border-radius: 22px;
    margin: -20px auto 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .shuu-assistant {
    right: 14px !important;
    bottom: 14px !important;
  }

  .shuu-greeting {
    display: none;
  }

  .shuu-btn {
    width: 60px !important;
    height: 60px !important;
  }

  .shuu-chatbox {
    width: calc(100vw - 28px) !important;
    right: 0 !important;
    bottom: 76px !important;
    max-height: 78vh !important;
  }

  .shuu-body {
    max-height: 36vh !important;
  }

  .shuu-phone-field {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .logo-box {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .logo-text strong {
    font-size: 14px !important;
  }

  .logo-text small {
    font-size: 10px !important;
  }

  .hero-copy h1,
  .blog-hero h1,
  .blog-detail-wrap h1 {
    font-size: clamp(38px, 13vw, 56px) !important;
  }

  .hero-single-visual {
    min-height: 420px;
  }

  .single-hero-person,
  .hero .single-hero-person,
  .blog-hero .single-hero-person {
    width: min(270px, 76vw);
  }

  .single-blob,
  .hero .single-blob,
  .blog-hero .single-blob {
    width: min(340px, 88vw);
    height: min(340px, 88vw);
  }

  .orbit-label-two,
  .orbit-label-four {
    right: 1%;
  }

  .orbit-label-one,
  .orbit-label-three {
    left: 1%;
  }

  .single-sticker {
    display: none;
  }

  .blog-visual {
    min-height: 350px !important;
  }

  .blog-article {
    padding: 24px;
    border-radius: 22px;
  }

  .blog-article p {
    font-size: 15px;
  }

  .blog-article-cta {
    padding: 22px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  #particles,
  .cursor-glow {
    display: none !important;
  }
}

/* ==================================================
   SHUU MOBILE SCROLL + HEIGHT FIX
================================================== */

/* Desktop/tablet better chat height */
.shuu-chatbox {
  max-height: min(720px, calc(100vh - 120px)) !important;
  display: flex !important;
  flex-direction: column !important;
}

.shuu-body {
  flex: 1 1 auto !important;
  max-height: 300px !important;
  overflow-y: auto !important;
}

.shuu-lead-form {
  max-height: 390px !important;
  overflow-y: auto !important;
}

/* Mobile fix */
@media (max-width: 700px) {
  .shuu-assistant {
    right: 12px !important;
    bottom: 12px !important;
  }

  .shuu-chatbox {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 82px !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - 105px) !important;
    border-radius: 22px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .shuu-header {
    flex: 0 0 auto !important;
    padding: 14px 16px !important;
  }

  .shuu-language {
    flex: 0 0 auto !important;
    padding: 10px 12px !important;
  }

  .shuu-body {
    flex: 1 1 auto !important;
    max-height: 30dvh !important;
    overflow-y: auto !important;
    padding: 14px !important;
  }

  .shuu-lead-form {
    flex: 1 1 auto !important;
    max-height: 42dvh !important;
    overflow-y: auto !important;
    padding: 14px !important;
  }

  .shuu-form {
    flex: 0 0 auto !important;
    padding: 12px !important;
  }

  .shuu-lead-form input,
  .shuu-lead-form textarea,
  .shuu-lead-form select {
    min-height: 42px !important;
    height: auto !important;
    font-size: 13px !important;
  }

  .shuu-lead-form textarea {
    min-height: 70px !important;
  }

  .shuu-phone-field {
    grid-template-columns: 125px 1fr !important;
  }
}

/* Extra small phones */
@media (max-width: 430px) {
  .shuu-chatbox {
    left: 10px !important;
    right: 10px !important;
    bottom: 76px !important;
    max-height: calc(100dvh - 95px) !important;
  }

  .shuu-body {
    max-height: 26dvh !important;
  }

  .shuu-lead-form {
    max-height: 45dvh !important;
  }

  .shuu-phone-field {
    grid-template-columns: 1fr !important;
  }

  .shuu-lead-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Prevent background scroll when Shuu is open */
body.shuu-open {
  overflow: hidden !important;
}

/* ==================================================
   SHUU MOBILE CLICK/TAP FIX
================================================== */

.shuu-assistant,
.shuu-assistant * {
  touch-action: manipulation !important;
}

.shuu-btn {
  cursor: pointer !important;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* Invisible larger clickable area around AI button */
.shuu-btn::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: transparent;
  z-index: -1;
}

/* Phone: bigger button + more space from browser bottom */
@media (max-width: 700px) {
  .shuu-assistant {
    right: 18px !important;
    bottom: 26px !important;
    z-index: 2147483647 !important;
  }

  .shuu-btn {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;
  }

  .shuu-btn::after {
    inset: -22px;
  }

  .shuu-icon {
    font-size: 21px !important;
  }

  .shuu-chatbox {
    bottom: 104px !important;
  }
}

/* Very small phones */
@media (max-width: 430px) {
  .shuu-assistant {
    right: 16px !important;
    bottom: 24px !important;
  }

  .shuu-btn {
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    min-height: 66px !important;
  }

  .shuu-chatbox {
    bottom: 98px !important;
  }

}


/* ==================================================
   PREMIUM CONTACT SECTION FINAL FIX
================================================== */

.contact {
  padding: 86px 0 96px !important;
}

.contact-box {
  grid-template-columns: 0.88fr 1.12fr !important;
  gap: 42px !important;
  align-items: center !important;
  padding: 46px !important;
  border-radius: 34px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
    radial-gradient(circle at 20% 20%, rgba(255,230,0,.08), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(124,58,237,.16), transparent 30%) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  box-shadow:
    0 30px 90px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
  overflow: hidden !important;
}

.contact-copy h2 {
  font-size: clamp(42px, 5.8vw, 78px) !important;
  line-height: .96 !important;
  max-width: 560px !important;
}

.contact-copy p {
  max-width: 560px !important;
  font-size: 17px !important;
}

.contact-form {
  position: relative !important;
  z-index: 3 !important;
  padding: 26px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(5,6,17,.74), rgba(5,6,17,.52)) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow:
    0 26px 70px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  gap: 16px !important;
}

.contact-form .form-row {
  gap: 16px !important;
}

.field-label {
  font-size: 13px !important;
  font-weight: 950 !important;
  color: rgba(255,255,255,.92) !important;
}

.required-star {
  color: #ff3b3b !important;
  font-size: 14px !important;
  transform: translateY(-1px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,.065) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.contact-form input,
.contact-form select,
.phone-field select,
.phone-field input {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 16px !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.38) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.phone-field select:focus,
.phone-field input:focus {
  border-color: rgba(255,230,0,.75) !important;
  background: rgba(255,255,255,.09) !important;
  box-shadow:
    0 0 0 4px rgba(255,230,0,.10),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}

/* Better phone alignment */
.phone-field {
  grid-template-columns: 110px minmax(0, 1fr) !important;
  gap: 12px !important;
}

.phone-field select {
  padding: 0 12px !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  border-color: rgba(255,230,0,.52) !important;
}

.phone-field input {
  padding: 0 16px !important;
}

/* Make project details fit nicely */
.contact-form textarea {
  min-height: 115px !important;
  border-radius: 18px !important;
}

/* CTA button full and premium */
.contact-form .btn {
  width: 100% !important;
  height: 56px !important;
  border-radius: 16px !important;
  margin-top: 2px !important;
}

/* Hide extra particles visually under the form */
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: rgba(5,6,17,.18);
  pointer-events: none;
  z-index: -1;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr !important;
    padding: 32px !important;
    gap: 28px !important;
  }

  .contact-copy h2 {
    max-width: 100% !important;
  }

  .contact-form {
    padding: 22px !important;
  }
}

@media (max-width: 700px) {
  .contact {
    padding: 68px 0 78px !important;
  }

  .contact-box {
    padding: 22px !important;
    border-radius: 26px !important;
  }

  .contact-copy h2 {
    font-size: clamp(38px, 12vw, 56px) !important;
  }

  .contact-form {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .phone-field {
    grid-template-columns: 1fr !important;
  }

  .contact-form input,
  .contact-form select,
  .phone-field select,
  .phone-field input {
    height: 52px !important;
    min-height: 52px !important;
  }
}

/* ==================================================
   CONTACT SECTION CLEAN PROFESSIONAL FINAL
================================================== */

.contact {
  padding: 90px 0 !important;
}

.contact-box {
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 46px !important;
  align-items: center !important;
  padding: 42px !important;
  border-radius: 34px !important;
  background: rgba(10, 10, 24, 0.86) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,0.42) !important;
  overflow: hidden !important;
}

/* Stop particles from visually disturbing contact section */
.contact-box::before {
  background:
    linear-gradient(135deg, rgba(255,230,0,.05), transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(124,58,237,.18), transparent 34%),
    rgba(5,6,17,.35) !important;
  opacity: 1 !important;
}

.contact-copy {
  position: relative !important;
  z-index: 3 !important;
}

.contact-copy h2 {
  font-size: clamp(44px, 5.7vw, 76px) !important;
  line-height: .96 !important;
  max-width: 570px !important;
}

.contact-copy p {
  max-width: 560px !important;
  color: #cbd3ee !important;
}

/* Main form card */
.contact-form {
  position: relative !important;
  z-index: 4 !important;
  padding: 28px !important;
  border-radius: 28px !important;
  background: #080914 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow:
    0 24px 70px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  gap: 18px !important;
}

/* Remove background particles inside form */
.contact-form::before,
.contact-form::after {
  display: none !important;
}

/* Form grid */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  align-items: start !important;
}

.contact-form label {
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
  min-width: 0 !important;
}

.field-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
}

.required-star {
  color: #ff3b3b !important;
  font-size: 14px !important;
  font-weight: 1000 !important;
}

/* Inputs */
.contact-form input,
.contact-form select,
.contact-form textarea,
.phone-field select,
.phone-field input {
  background: #151623 !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.contact-form input,
.contact-form select,
.phone-field select,
.phone-field input {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 16px !important;
  padding: 0 16px !important;
}

.contact-form textarea {
  min-height: 120px !important;
  border-radius: 18px !important;
  padding: 16px !important;
  resize: vertical !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.42) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.phone-field select:focus,
.phone-field input:focus {
  border-color: rgba(255,230,0,.8) !important;
  background: #191a28 !important;
  box-shadow: 0 0 0 4px rgba(255,230,0,.10) !important;
}

/* Phone field */
.phone-field {
  display: grid !important;
  grid-template-columns: 108px 1fr !important;
  gap: 12px !important;
}

.phone-field select {
  border-color: rgba(255,230,0,.55) !important;
  font-weight: 950 !important;
  padding: 0 12px !important;
}

.phone-field option,
.contact-form option {
  color: #070812 !important;
  background: #ffffff !important;
}

/* Full width submit button */
.contact-form .btn {
  width: 100% !important;
  height: 56px !important;
  border-radius: 16px !important;
  margin-top: 2px !important;
}

#formNote {
  color: #b9c2df !important;
  text-align: center !important;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr !important;
    padding: 30px !important;
    gap: 30px !important;
  }

  .contact-form {
    padding: 22px !important;
  }
}

@media (max-width: 700px) {
  .contact {
    padding: 70px 0 !important;
  }

  .contact-box {
    padding: 20px !important;
    border-radius: 26px !important;
  }

  .contact-copy h2 {
    font-size: clamp(38px, 12vw, 56px) !important;
  }

  .contact-form {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }

  .phone-field {
    grid-template-columns: 1fr !important;
  }

  .contact-form input,
  .contact-form select,
  .phone-field select,
  .phone-field input {
    height: 52px !important;
    min-height: 52px !important;
  }
}

/* ==================================================
   REMOVE YELLOW LINE FROM CONTACT PHONE SELECT
================================================== */

.phone-field select {
  border-color: rgba(255,255,255,.14) !important;
}

.phone-field select:focus,
.phone-field input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,.22) !important;
  box-shadow: none !important;
  background: #191a28 !important;
}

/* ==================================================
   FORCE HERO HEADING SMALLER - FINAL
================================================== */

body .hero .hero-copy h1,
body section.hero .hero-copy h1 {
  font-size: 68px !important;
  line-height: 1.03 !important;
  letter-spacing: -0.055em !important;
  max-width: 680px !important;
}

body .hero .hero-copy h1 span,
body section.hero .hero-copy h1 span {
  font-size: 68px !important;
  line-height: 1.03 !important;
}

/* Laptop */
@media (max-width: 1200px) {
  body .hero .hero-copy h1,
  body section.hero .hero-copy h1,
  body .hero .hero-copy h1 span,
  body section.hero .hero-copy h1 span {
    font-size: 58px !important;
  }
}

/* Tablet */
@media (max-width: 900px) {
  body .hero .hero-copy h1,
  body section.hero .hero-copy h1,
  body .hero .hero-copy h1 span,
  body section.hero .hero-copy h1 span {
    font-size: 48px !important;
  }
}

/* Phone */
@media (max-width: 560px) {
  body .hero .hero-copy h1,
  body section.hero .hero-copy h1,
  body .hero .hero-copy h1 span,
  body section.hero .hero-copy h1 span {
    font-size: 40px !important;
    line-height: 1.05 !important;
  }
}

/* ==================================================
   HERO BALANCE FINAL FIX
================================================== */

/* Main hero section */
.hero {
  min-height: 92vh !important;
  padding: 110px 0 70px !important;
  display: flex !important;
  align-items: center !important;
}

/* If your hero uses a 2-column layout */
.hero-grid,
.hero-inner,
.hero-content-wrap {
  display: grid !important;
  grid-template-columns: 0.92fr 1.08fr !important;
  align-items: center !important;
  gap: 42px !important;
}

/* Left text side */
.hero-copy {
  position: relative !important;
  z-index: 3 !important;
  max-width: 620px !important;
}

.hero-copy h1 {
  font-size: clamp(52px, 5.6vw, 78px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em !important;
  margin: 10px 0 18px !important;
  max-width: 620px !important;
}

.hero-copy h1 span,
.hero-copy h1 .highlight {
  font-size: inherit !important;
}

.hero-copy p {
  max-width: 560px !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #cbd3ee !important;
  margin: 0 0 26px !important;
}

/* Buttons row */
.hero-actions,
.hero-cta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 24px !important;
}

/* Right visual side */
.hero-visual,
.hero-media,
.hero-graphic {
  position: relative !important;
  min-height: 560px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  z-index: 2 !important;
}

/* Big orb / blob */
.hero-orb,
.hero-blob,
.hero-circle {
  position: absolute !important;
  width: 560px !important;
  height: 560px !important;
  right: 20px !important;
  top: 28px !important;
  border-radius: 46% 54% 52% 48% / 46% 42% 58% 54% !important;
  filter: drop-shadow(0 24px 80px rgba(255, 85, 120, 0.22)) !important;
  transform: none !important;
}

/* Orbit lines */
.hero-rings,
.hero-orbits,
.orbit-group {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  opacity: 0.82 !important;
}

/* Person image */
.hero-person,
.hero-model,
.hero-image,
.hero-cutout {
  position: absolute !important;
  right: 90px !important;
  bottom: -6px !important;
  width: clamp(220px, 26vw, 330px) !important;
  max-width: 100% !important;
  height: auto !important;
  z-index: 4 !important;
  object-fit: contain !important;
}

/* Floating labels / chips / stickers */
.hero-tag,
.hero-chip,
.hero-badge,
.hero-sticker {
  position: absolute !important;
  z-index: 5 !important;
  transform: none !important;
}

/* Better manual placement */
.hero-tag:nth-child(1),
.hero-chip:nth-child(1),
.hero-badge:nth-child(1) {
  top: 140px !important;
  left: 70px !important;
}

.hero-tag:nth-child(2),
.hero-chip:nth-child(2),
.hero-badge:nth-child(2) {
  top: 188px !important;
  right: 20px !important;
}

.hero-tag:nth-child(3),
.hero-chip:nth-child(3),
.hero-badge:nth-child(3) {
  left: 12px !important;
  bottom: 170px !important;
}

.hero-tag:nth-child(4),
.hero-chip:nth-child(4),
.hero-badge:nth-child(4) {
  right: 34px !important;
  bottom: 176px !important;
}

.hero-tag:nth-child(5),
.hero-chip:nth-child(5),
.hero-badge:nth-child(5) {
  right: 0 !important;
  top: 70px !important;
}

/* Optional metrics/cards below hero */
.hero-metrics,
.hero-stats {
  margin-top: 26px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}

/* ---------- Laptop ---------- */
@media (max-width: 1200px) {
  .hero-grid,
  .hero-inner,
  .hero-content-wrap {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 5vw, 66px) !important;
    max-width: 560px !important;
  }

  .hero-orb,
  .hero-blob,
  .hero-circle {
    width: 500px !important;
    height: 500px !important;
    right: 0 !important;
    top: 36px !important;
  }

  .hero-person,
  .hero-model,
  .hero-image,
  .hero-cutout {
    right: 54px !important;
    width: clamp(210px, 23vw, 290px) !important;
  }
}

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .hero {
    min-height: auto !important;
    padding: 100px 0 60px !important;
  }

  .hero-grid,
  .hero-inner,
  .hero-content-wrap {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .hero-copy {
    max-width: 100% !important;
    text-align: left !important;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 8vw, 58px) !important;
    max-width: 100% !important;
  }

  .hero-visual,
  .hero-media,
  .hero-graphic {
    min-height: 470px !important;
    margin-top: 8px !important;
  }

  .hero-orb,
  .hero-blob,
  .hero-circle {
    width: 420px !important;
    height: 420px !important;
    left: 50% !important;
    right: auto !important;
    top: 28px !important;
    transform: translateX(-50%) !important;
  }

  .hero-person,
  .hero-model,
  .hero-image,
  .hero-cutout {
    left: 50% !important;
    right: auto !important;
    bottom: 0 !important;
    transform: translateX(-50%) !important;
    width: 240px !important;
  }

  .hero-tag,
  .hero-chip,
  .hero-badge,
  .hero-sticker {
    transform: scale(0.92) !important;
  }
}

/* ---------- Phone ---------- */
@media (max-width: 560px) {
  .hero {
    padding: 92px 0 54px !important;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10.8vw, 46px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
  }

  .hero-copy p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .hero-visual,
  .hero-media,
  .hero-graphic {
    min-height: 400px !important;
  }

  .hero-orb,
  .hero-blob,
  .hero-circle {
    width: 330px !important;
    height: 330px !important;
    top: 30px !important;
  }

  .hero-person,
  .hero-model,
  .hero-image,
  .hero-cutout {
    width: 190px !important;
    bottom: -2px !important;
  }

  .hero-tag,
  .hero-chip,
  .hero-badge,
  .hero-sticker {
    transform: scale(0.82) !important;
  }

  .hero-tag:nth-child(1),
  .hero-chip:nth-child(1),
  .hero-badge:nth-child(1) {
    top: 70px !important;
    left: 8px !important;
  }

  .hero-tag:nth-child(2),
  .hero-chip:nth-child(2),
  .hero-badge:nth-child(2) {
    top: 100px !important;
    right: 0 !important;
  }

  .hero-tag:nth-child(3),
  .hero-chip:nth-child(3),
  .hero-badge:nth-child(3) {
    left: 0 !important;
    bottom: 126px !important;
  }

  .hero-tag:nth-child(4),
  .hero-chip:nth-child(4),
  .hero-badge:nth-child(4) {
    right: 0 !important;
    bottom: 128px !important;
  }

  .hero-tag:nth-child(5),
  .hero-chip:nth-child(5),
  .hero-badge:nth-child(5) {
    right: 12px !important;
    top: 24px !important;
  }
}

