/* SVANPRO IT TECHNOLOGIES - Premium Corporate Theme */
:root {
  --bg: #0b1120;
  --secondary: #141b2d;
  --card: #1a2238;
  --gradient-start: #7c3aed;
  --gradient-end: #ec4899;
  --accent: #06b6d4;
  --text: #ffffff;
  --text-muted: #cbd5e1;
  --border: rgba(255, 255, 255, 0.12);
  --glass: rgba(20, 27, 45, 0.58);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1180px, 92vw);
  --brand-gradient: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Premium scrollbar polish */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.7) rgba(20, 27, 45, 0.7);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(20, 27, 45, 0.8);
}

*::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 58, 237, 0.28), transparent 35%),
    radial-gradient(circle at 88% 0%, rgba(6, 182, 212, 0.16), transparent 30%),
    linear-gradient(180deg, #090f1d 0%, var(--bg) 55%, #0d1526 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -48px;
  z-index: 2500;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.92), rgba(236, 72, 153, 0.88));
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.82rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.3), 0 0 0 rgba(236, 72, 153, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35), 0 0 22px rgba(236, 72, 153, 0.35);
}

.btn-secondary {
  color: var(--text);
  background:
    linear-gradient(rgba(6, 182, 212, 0.16), rgba(6, 182, 212, 0.1)) padding-box,
    var(--brand-gradient) border-box;
  border: 1px solid transparent;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(260px, 72%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.38), transparent);
}

.section-title {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin-bottom: 0.9rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 700px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal[data-reveal-delay="1"] {
  transition-delay: 0.05s;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 0.1s;
}

.reveal[data-reveal-delay="3"] {
  transition-delay: 0.15s;
}

.reveal.fade-left {
  transform: translateX(-28px);
}

.reveal.fade-right {
  transform: translateX(28px);
}

.reveal.zoom {
  transform: scale(0.92);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.fade-left.visible,
.reveal.fade-right.visible,
.reveal.zoom.visible {
  transform: translateX(0) scale(1);
}

.pre-header {
  background: rgba(9, 14, 28, 0.95);
  border-bottom: 1px solid var(--border);
}

.pre-header-wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.pre-left,
.pre-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pre-item i,
.social-icons a i {
  color: var(--accent);
  margin-right: 0.4rem;
}

.social-icons a i {
  margin-right: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
  background: rgba(6, 182, 212, 0.28);
  transform: translateY(-2px);
}

.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(11, 17, 32, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(9, 14, 27, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(124, 58, 237, 0.35);
}

.nav-wrap,
.nav-container {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.header-left {
  width: 360px;
  min-width: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.header-center {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  white-space: nowrap;
}

.header-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-cta:hover {
  color: #fff;
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.12);
}

.site-header .logo,
.header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0;
  margin: 0;
  background: transparent;
  width: 360px;
  min-width: 360px;
  overflow: visible;
  border: none;
  line-height: 0;
  isolation: isolate;
}

.site-header .logo::before,
.header .logo::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 72%;
  height: 72%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.44) 0%, rgba(124, 58, 237, 0.1) 48%, rgba(124, 58, 237, 0) 78%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.logo picture {
  display: block;
  width: 100%;
}

.site-header .logo img,
.site-header .logo .logo-img,
.header .logo img,
.header .logo .logo-img {
  width: 300px;
  height: auto;
  object-fit: contain;
  max-width: none;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  transform-origin: left center;
  transition: transform 0.32s ease, filter 0.32s ease;
  box-shadow: none;
}

.site-header .logo img,
.site-header .logo-img,
.header .logo img,
.header .logo-img {
  filter:
    saturate(1.14)
    contrast(1.1)
    drop-shadow(0 0 14px rgba(124, 58, 237, 0.28))
    drop-shadow(0 0 20px rgba(168, 85, 247, 0.18))
    drop-shadow(0 8px 14px rgba(2, 8, 22, 0.38));
}

.site-header .logo:hover img,
.site-header .logo:hover .logo-img,
.header .logo:hover img,
.header .logo:hover .logo-img {
  transform: scale(1.05);
  filter:
    saturate(1.2)
    contrast(1.12)
    drop-shadow(0 0 18px rgba(124, 58, 237, 0.36))
    drop-shadow(0 0 26px rgba(168, 85, 247, 0.24))
    drop-shadow(0 10px 18px rgba(2, 8, 22, 0.44));
}

.footer-brand .logo-img {
  height: 84px;
}

.logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.56rem 0.88rem;
  border-radius: 12px;
  letter-spacing: 0.07em;
  font-weight: 700;
  font-size: clamp(0.74rem, 1.4vw, 0.9rem);
  text-transform: uppercase;
  color: #ffffff;
  background:
    linear-gradient(122deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.18)),
    rgba(5, 10, 23, 0.84);
  border: 1px solid rgba(122, 164, 255, 0.26);
  box-shadow:
    inset 0 0 20px rgba(6, 182, 212, 0.08),
    0 0 14px rgba(124, 58, 237, 0.22),
    0 8px 16px rgba(3, 8, 20, 0.34);
}

.logo-fallback span {
  background: linear-gradient(90deg, #ffffff 0%, #d7e7ff 35%, #7f8cff 65%, #40d6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gradient-start), var(--gradient-end));
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  font-size: 0.95rem;
}

.main-nav,
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.header-center .main-nav,
.header-center .navbar {
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #f2f7ff;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.72rem 0.8rem;
  border-radius: 8px;
  font-size: 0.92rem;
  transition: background 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 18px rgba(124, 58, 237, 0.35);
  text-shadow: 0 0 14px rgba(236, 72, 153, 0.45);
}

.nav-link i {
  font-size: 0.74rem;
  opacity: 0.75;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 300px;
  max-width: 340px;
  padding: 0.8rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(16, 22, 41, 0.72), rgba(16, 22, 41, 0.72)) padding-box,
    linear-gradient(135deg, rgba(124, 58, 237, 0.75), rgba(236, 72, 153, 0.75)) border-box;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mega-head {
  margin-bottom: 0.45rem;
  padding: 0.4rem 0.55rem 0.55rem;
}

.mega-head h5 {
  font-size: 0.92rem;
  font-weight: 600;
}

.mega-head p {
  margin-top: 0.14rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-item:hover > .mega-menu,
.nav-item.open > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.32rem;
}

.mega-grid a {
  color: var(--text-muted);
  padding: 0.56rem 0.6rem;
  border-radius: 10px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  position: relative;
}

.mega-grid a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-grid a i {
  width: 18px;
  text-align: center;
  color: var(--accent);
  font-size: 0.86rem;
  opacity: 0.95;
  transition: transform 0.25s ease;
}

.mega-grid a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: #f8f8ff;
}

.mega-grid a:hover {
  color: #fff;
  transform: translateX(3px);
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.28), rgba(236, 72, 153, 0.28));
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.22);
}

.mega-grid a:hover i {
  transform: translateX(2px) rotate(8deg);
}

.mega-grid a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.hero {
  padding: 8.2rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: -160px;
  right: -180px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35), rgba(236, 72, 153, 0));
  pointer-events: none;
  animation: drift 11s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 72%, rgba(6, 182, 212, 0.18), transparent 36%),
    linear-gradient(130deg, rgba(124, 58, 237, 0.08), rgba(236, 72, 153, 0.08));
}

.hero-mesh {
  position: absolute;
  inset: -10%;
  background:
    conic-gradient(from 140deg at 40% 35%, rgba(124, 58, 237, 0.18), transparent 30%),
    conic-gradient(from 10deg at 70% 60%, rgba(236, 72, 153, 0.16), transparent 35%),
    conic-gradient(from 220deg at 20% 80%, rgba(6, 182, 212, 0.14), transparent 30%);
  filter: blur(24px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  animation: meshShift 14s ease-in-out infinite alternate;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    radial-gradient(circle, rgba(6, 182, 212, 0.2) 1px, transparent 1px),
    radial-gradient(circle, rgba(236, 72, 153, 0.14) 1px, transparent 1px);
  background-size: 125px 125px, 170px 170px, 210px 210px;
  background-position: 0 0, 30px 40px, 60px 20px;
  opacity: 0.55;
  animation: particlesMove 24s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
  z-index: 1;
}

.hero-orb.one {
  width: 190px;
  height: 190px;
  left: -55px;
  top: 24%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.32), transparent 65%);
  animation: floatY 8s ease-in-out infinite;
}

.hero-orb.two {
  width: 150px;
  height: 150px;
  right: 24%;
  bottom: -45px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent 65%);
  animation: floatY 9s ease-in-out infinite 0.8s;
}

.hero-orb.three {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 22%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.26), transparent 65%);
  animation: floatY 7s ease-in-out infinite 0.4s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.tech-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tech-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tech-badges span i {
  color: var(--accent);
}

.hero-kicker {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-panel {
  padding: 1.3rem;
}

.hero-visual {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(4, 10, 23, 0.35);
  animation: floatY 6.5s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 0.8rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatY 5s ease-in-out infinite;
}

.stat-box:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
  animation-delay: 0.35s;
}

.stat-box:nth-child(4) {
  animation-delay: 0.5s;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(7, 14, 30, 0.35);
}

.stat-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.stat-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 28px rgba(3, 8, 18, 0.32);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(124, 58, 237, 0.4), rgba(236, 72, 153, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.35);
}

.card:focus-within {
  border-color: rgba(6, 182, 212, 0.62);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2), 0 20px 40px rgba(124, 58, 237, 0.24);
}

.card:hover::before {
  opacity: 1;
}

.card:hover i {
  transform: rotate(8deg);
}

.card i {
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.06rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.91rem;
}

.page-hero {
  padding: 5.4rem 0 3.4rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin-bottom: 0.7rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 760px;
}

.list-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.list-grid .card {
  display: flex;
  gap: 0.9rem;
}

.list-grid .card i {
  margin-top: 0.18rem;
}

.cta {
  margin-top: 2rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(6, 182, 212, 0.9);
  outline-offset: 2px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #b8c5dc;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0f1f;
}

.footer-top {
  padding: 3rem 0 2.3rem;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.2rem;
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-brand ul {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.45rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  max-width: 380px;
}

.footer-col h4 {
  margin-bottom: 0.8rem;
}

.footer-col ul {
  display: grid;
  gap: 0.48rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.about-svanpro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.about-visual-wrap {
  position: relative;
}

.about-illustration-frame {
  padding: 0.85rem;
  box-shadow: 0 18px 38px rgba(6, 12, 24, 0.42);
}

.about-illustration-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 14px;
}

.about-float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-float-shape.one {
  width: 112px;
  height: 112px;
  left: -18px;
  top: -14px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 65%);
  animation: floatY 6.8s ease-in-out infinite;
}

.about-float-shape.two {
  width: 132px;
  height: 132px;
  right: -20px;
  bottom: -16px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.28), transparent 65%);
  animation: floatY 7.8s ease-in-out infinite 0.6s;
}

.about-label {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
}

.about-content-wrap .section-subtitle + .section-subtitle {
  margin-top: 0.9rem;
}

.about-service-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.85rem;
}

.about-service-card {
  margin-top: 0;
  padding: 1rem;
}

.about-service-card i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.25), rgba(236, 72, 153, 0.3));
  color: #fff;
}

.why-businesses .section-subtitle,
.process-section .section-subtitle,
.testimonials-section .section-subtitle {
  max-width: 560px;
}

.industries-serve,
.why-businesses {
  position: relative;
}

.industries-serve .container,
.why-businesses .container {
  position: relative;
  padding: 2rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 16%, rgba(115, 56, 221, 0.34), transparent 36%),
    radial-gradient(circle at 84% 26%, rgba(236, 72, 153, 0.3), transparent 38%),
    linear-gradient(130deg, rgba(112, 56, 213, 0.76), rgba(194, 63, 142, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(9, 14, 28, 0.34);
  overflow: hidden;
}

.industries-serve .container::before,
.why-businesses .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.08), rgba(8, 14, 26, 0.08));
  pointer-events: none;
}

.industries-serve .container > *,
.why-businesses .container > * {
  position: relative;
  z-index: 1;
}

.why-cards {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.process-step i {
  transition: transform 0.3s ease;
}

.process-step:hover i {
  transform: translateY(-2px) scale(1.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 0.8rem;
}

.company-stats .stat-box {
  text-align: center;
  animation: none;
  background:
    linear-gradient(145deg, rgba(36, 50, 86, 0.9), rgba(24, 35, 64, 0.92));
  border: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 10px 24px rgba(4, 10, 22, 0.34);
}

.company-stats .stat-box:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(45, 55, 95, 0.9), rgba(31, 42, 73, 0.92));
}

.company-stats .stat-box:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(57, 49, 96, 0.9), rgba(38, 37, 76, 0.92));
}

.company-stats .stat-box:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(64, 45, 92, 0.9), rgba(45, 35, 72, 0.92));
}

.company-stats .stat-box h3 {
  font-size: 1.8rem;
}

.testimonial-slider {
  margin-top: 1.2rem;
  min-height: 250px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(26, 34, 56, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.35);
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}

.testimonial-item {
  inset: 1.2rem 3.2rem;
}

.cta-wave p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.cta-actions {
  justify-content: center;
  margin-top: 1.2rem;
}

.about-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.about-content,
.about-media {
  padding: 1.2rem;
}

.about-pillars {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.7rem;
}

.about-pillars div {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.about-pillars h4 {
  font-size: 0.92rem;
}

.about-pillars p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.about-counters {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.7rem;
}

.about-media img {
  border-radius: 12px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ceo-message {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-message p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.feature-4 {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.timeline-block {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.timeline-row {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 0.7rem;
}

.timeline-row div {
  position: relative;
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-row span {
  font-weight: 600;
}

.timeline-row p {
  margin-top: 0.3rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.logo-marquee {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0.8rem;
}

.logo-marquee img {
  width: 100%;
  height: 68px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  filter: grayscale(100%);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.logo-marquee img:hover {
  filter: grayscale(0%);
  transform: translateY(-3px);
}

.why-cards {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.process-line {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 0.7rem;
  position: relative;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.4), rgba(236, 72, 153, 0.4));
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0.8rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.process-step i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0.55rem;
}

.process-step h4 {
  font-size: 0.88rem;
}

.home-delivery .process-step {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(140deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.14));
  border-color: rgba(255, 255, 255, 0.16);
}

.home-delivery .process-step::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 70%);
  z-index: 0;
}

.home-delivery .process-step::after {
  content: var(--step-icon, "\f0ae");
  position: absolute;
  right: 0.65rem;
  bottom: -0.22rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 3.3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.09);
  transform: rotate(-8deg);
  z-index: 0;
}

.home-delivery .process-step > * {
  position: relative;
  z-index: 1;
}

.home-delivery .process-step:nth-child(1) {
  --step-icon: "\f002";
}

.home-delivery .process-step:nth-child(2) {
  --step-icon: "\f00b";
}

.home-delivery .process-step:nth-child(3) {
  --step-icon: "\f5ad";
}

.home-delivery .process-step:nth-child(4) {
  --step-icon: "\f121";
}

.home-delivery .process-step:nth-child(5) {
  --step-icon: "\f0c3";
}

.home-delivery .process-step:nth-child(6) {
  --step-icon: "\f135";
}

.home-delivery .process-step i {
  color: #ffffff;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.85), rgba(236, 72, 153, 0.78));
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.32);
}

.testimonial-slider {
  margin-top: 1.4rem;
  padding: 1.2rem;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  position: absolute;
  inset: 1.2rem;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial-item img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stars {
  color: #fbbf24;
  letter-spacing: 0.15em;
}

.cta-large .cta-wave {
  padding: 2.4rem 1.4rem;
  text-align: center;
  background:
    linear-gradient(112deg, #6f3cd9 0%, #8a45c4 43%, #c5469a 100%) padding-box,
    linear-gradient(135deg, rgba(130, 74, 231, 0.95), rgba(230, 88, 162, 0.92)) border-box;
  border: 1px solid transparent;
  animation: pulseGradient 5.5s ease-in-out infinite;
  box-shadow: 0 22px 42px rgba(9, 14, 28, 0.34), 0 0 26px rgba(111, 60, 217, 0.28);
}

.cta-wave h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.9rem;
}

.newsletter-wrap {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter-form .btn {
  padding-inline: 1rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 9px;
  border-radius: 99px;
  background: var(--brand-gradient);
  transform: translateX(-50%);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.65s linear;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 2100;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  box-shadow: 0 0 14px rgba(236, 72, 153, 0.45);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(20, 27, 45, 0.86);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1600;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.36);
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-14px, 12px);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes particlesMove {
  from {
    background-position: 0 0, 30px 40px, 60px 20px;
  }
  to {
    background-position: 130px 160px, -90px 220px, 180px -120px;
  }
}

@keyframes meshShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-2.5%, 2%, 0) scale(1.03);
  }
}

@keyframes pulseGradient {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(236, 72, 153, 0.25);
  }
  50% {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.35);
  }
}

@keyframes scrollPulse {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 14px);
    opacity: 0.15;
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1050px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 112px;
    left: 4vw;
    right: 4vw;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(11, 17, 32, 0.94);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    margin-top: 0.4rem;
    min-width: 100%;
    max-width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-item.open > .mega-menu {
    display: block;
  }

  .hero {
    padding-top: 6.2rem;
  }

  .hero-grid,
  .about-svanpro-grid,
  .about-grid,
  .footer-top,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .list-grid,
  .feature-4,
  .why-cards,
  .about-service-grid,
  .stats-grid,
  .logo-marquee,
  .process-line,
  .timeline-row {
    grid-template-columns: 1fr 1fr;
  }

  .process-line::before {
    display: none;
  }

  .testimonial-item {
    grid-template-columns: 1fr;
    text-align: center;
    inset: 1.2rem 1.2rem 1.2rem;
  }

  .testimonial-item img {
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  :root {
    --container: min(1120px, 93vw);
  }

  .header-left,
  .site-header .logo,
  .header .logo {
    width: 320px;
    min-width: 320px;
  }

  .site-header .logo img,
  .site-header .logo .logo-img,
  .header .logo img,
  .header .logo .logo-img {
    width: 270px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 4.3rem 0;
  }

  .header-left,
  .site-header .logo,
  .header .logo {
    width: 320px;
    min-width: 320px;
  }

  .site-header .logo img,
  .site-header .logo .logo-img,
  .header .logo img,
  .header .logo .logo-img {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .header-left,
  .site-header .logo,
  .header .logo {
    width: 290px;
    min-width: 290px;
  }

  .site-header .logo img,
  .site-header .logo .logo-img,
  .header .logo img,
  .header .logo .logo-img {
    width: 255px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 3.7rem 0;
  }

  .header-left,
  .site-header .logo,
  .header .logo {
    width: 250px;
    min-width: 250px;
  }

  .site-header .logo img,
  .site-header .logo .logo-img,
  .header .logo img,
  .header .logo .logo-img {
    width: 220px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 425px) {
  .section-title {
    font-size: 1.52rem;
  }
}

@media (max-width: 375px) {
  .logo {
    padding: 0;
  }

  .logo-fallback {
    min-height: 46px;
    padding: 0.42rem 0.62rem;
    font-size: 0.65rem;
  }

  .logo span:last-child {
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .logo-badge {
    width: 34px;
    height: 34px;
  }

  .btn {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 720px) {
  .pre-header-wrap {
    min-height: auto;
    padding: 0.4rem 0;
    flex-direction: column;
    align-items: flex-end;
  }

  .industries-serve .container,
  .why-businesses .container {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .site-header {
    top: 0;
  }

  .main-nav,
  .navbar {
    top: 92px;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .scroll-indicator {
    display: none;
  }

  .cards,
  .list-grid,
  .hero-stats,
  .feature-4,
  .why-cards,
  .about-service-grid,
  .stats-grid,
  .logo-marquee,
  .process-line,
  .timeline-row,
  .about-pillars,
  .about-counters,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }
}
