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

:root {
  /* Brand */
  --navy: #071126;
  --navy-light: #17213a;
  --blue: #1a4aff;
  --blue-bright: #2d6bff;
  --accent: #4f8eff;
  --cyan: #00c7ff;
  --steel: #60708a;
  --off-white: #f5f8ff;
  --white: #ffffff;

  /* Light liquid-glass palette */
  --bg-page: #eef5ff;
  --bg-page-2: #f8fbff;
  --bg-surface: rgba(255,255,255,0.62);
  --text-primary: #071126;
  --text-secondary: #40516b;
  --text-muted: #718198;

  /* Liquid glass tokens */
  --glass: rgba(255,255,255,0.48);
  --glass-soft: rgba(255,255,255,0.34);
  --glass-heavy: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.78);
  --glass-border-blue: rgba(26,74,255,0.16);
  --glass-blur: blur(22px) saturate(150%);
  --glass-shadow: 0 18px 60px rgba(31,79,170,0.12), 0 2px 8px rgba(255,255,255,0.8) inset, 0 -1px 0 rgba(26,74,255,0.08) inset;
  --glass-shadow-lg: 0 26px 80px rgba(31,79,170,0.18), 0 2px 10px rgba(255,255,255,0.95) inset, 0 -1px 0 rgba(26,74,255,0.12) inset;
  --shadow-blue: 0 28px 90px rgba(45,107,255,0.22);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.32s cubic-bezier(0.22,1,0.36,1);
  --radius: 22px;
  --radius-sm: 12px;
  --radius-lg: 30px;
  --radius-pill: 999px;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,199,255,0.22) 0 13%, transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(45,107,255,0.20) 0 12%, transparent 32%),
    radial-gradient(circle at 74% 76%, rgba(143,191,255,0.24) 0 10%, transparent 31%),
    linear-gradient(135deg, var(--bg-page-2) 0%, var(--bg-page) 48%, #eaf2ff 100%);
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26,74,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,74,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 22%, black, transparent 72%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.42), rgba(255,255,255,0.08) 42%, rgba(26,74,255,0.04));
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
main { position: relative; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #edf4ff; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue-bright), var(--cyan)); border-radius: 999px; border: 2px solid #edf4ff; }
::selection { background: rgba(26,74,255,0.16); color: var(--blue); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px,4vw,72px); }
.section { padding: clamp(72px,8vw,124px) 0; position: relative; }
.section-light, .section-mid {
  background: linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255,255,255,0.16));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.heading-xl { font-family: var(--font-display); font-size: clamp(38px,6vw,82px); font-weight: 700; line-height: 1.04; letter-spacing: -0.045em; color: var(--text-primary); }
.heading-lg { font-family: var(--font-display); font-size: clamp(30px,4.1vw,58px); font-weight: 700; line-height: 1.08; letter-spacing: -0.035em; color: var(--text-primary); }
.heading-md { font-family: var(--font-display); font-size: clamp(21px,2.5vw,32px); font-weight: 700; line-height: 1.2; color: var(--text-primary); }
p { color: var(--text-secondary); }
.blue { color: var(--blue-bright); }
.cyan { color: #029ed0; }
.gradient-text { background: linear-gradient(120deg, #071126 0%, var(--blue) 46%, var(--cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding: 7px 15px;
  border-radius: var(--radius-pill);
  color: var(--blue); font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: 0 10px 34px rgba(26,74,255,0.10), inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 0 14px rgba(0,199,255,0.85); }
.tag--dark { color: var(--blue); }
.tag--dark::before { background: linear-gradient(135deg, var(--blue), var(--cyan)); }

.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; white-space: nowrap;
  transition: var(--transition);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright) 55%, var(--cyan));
  box-shadow: 0 16px 38px rgba(26,74,255,0.28), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 52px rgba(26,74,255,0.38), inset 0 1px 0 rgba(255,255,255,0.42); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  color: var(--text-primary);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.btn-outline:hover { transform: translateY(-3px); border-color: rgba(26,74,255,0.26); background: rgba(255,255,255,0.72); box-shadow: var(--glass-shadow-lg); }

.glass-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.34));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: var(--transition);
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.88), transparent 32%, rgba(0,199,255,0.10) 100%);
  opacity: 0.76;
}
.glass-card > * { position: relative; z-index: 1; }
.glass-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.96); box-shadow: var(--glass-shadow-lg); }

input, textarea, select {
  width: 100%; padding: 13px 16px;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.82);
  color: var(--text-primary); font: inherit; font-size: 0.95rem;
  background: rgba(255,255,255,0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 28px rgba(31,79,170,0.08);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  transition: var(--transition);
}
input:focus, textarea:focus, select:focus { outline: none; border-color: rgba(26,74,255,0.42); background: rgba(255,255,255,0.82); box-shadow: 0 0 0 4px rgba(26,74,255,0.10), 0 14px 34px rgba(31,79,170,0.10); }
input::placeholder, textarea::placeholder { color: var(--text-muted); }

.divider { height: 1px; border: 0; background: linear-gradient(90deg, transparent, rgba(26,74,255,0.18), transparent); }
.navbar-logo-icon, .footer-logo-icon { height: 42px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(26,74,255,0.10)); }
.navbar-logo-name, .footer-logo-name { height: 34px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(26,74,255,0.08)); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; } .reveal-delay-2 { transition-delay: 0.2s; } .reveal-delay-3 { transition-delay: 0.3s; } .reveal-delay-4 { transition-delay: 0.4s; } .reveal-delay-5 { transition-delay: 0.5s; } .reveal-delay-6 { transition-delay: 0.6s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes rotateGlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 22px rgba(26,74,255,0.18); } 50% { box-shadow: 0 0 42px rgba(0,199,255,0.34); } }

@media (max-width: 480px) { .container { padding: 0 16px; } .btn-primary, .btn-outline { padding: 13px 22px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* Shared light liquid-glass page hero (used by About, Services, Contact) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 86px;
  background: transparent;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 58% at 50% 0%, rgba(45,107,255,0.18) 0%, transparent 62%),
    radial-gradient(circle at 84% 28%, rgba(0,199,255,0.12), transparent 34%);
  pointer-events: none;
}
.page-hero__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 860px;
  height: 430px;
  background: radial-gradient(ellipse, rgba(45,107,255,0.16) 0%, rgba(0,199,255,0.08) 38%, transparent 72%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__desc { color: var(--text-secondary); font-size: clamp(15px,1.5vw,18px); line-height: 1.75; max-width: 620px; margin-top: 16px; }

/* ───────────────────────────────────────────────────────────
   AXOTECH PREMIUM LIGHT THEME REFRESH
   Logo-matched navy + royal blue + cyan palette, professional
   liquid-glass surfaces, and subtle tech background.
   ─────────────────────────────────────────────────────────── */
:root {
  --navy: #061126;
  --navy-light: #13244a;
  --blue: #1a4aff;
  --blue-bright: #2458ff;
  --accent: #2d6bff;
  --cyan: #00c7ff;
  --steel: #526782;
  --bg-page: #eef6ff;
  --bg-page-2: #fbfdff;
  --text-primary: #061126;
  --text-secondary: #334760;
  --text-muted: #64758d;
  --glass: rgba(255,255,255,0.58);
  --glass-soft: rgba(255,255,255,0.42);
  --glass-heavy: rgba(255,255,255,0.78);
  --glass-border: rgba(255,255,255,0.86);
  --glass-border-blue: rgba(26,74,255,0.18);
  --glass-blur: blur(24px) saturate(165%);
  --glass-shadow: 0 18px 55px rgba(6,17,38,0.08), 0 18px 48px rgba(26,74,255,0.10), inset 0 1px 0 rgba(255,255,255,0.92);
  --glass-shadow-lg: 0 30px 90px rgba(6,17,38,0.10), 0 28px 70px rgba(26,74,255,0.15), inset 0 1px 0 rgba(255,255,255,0.96);
  --shadow-blue: 0 28px 90px rgba(26,74,255,0.22);
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(0,199,255,0.14) 0 11%, transparent 31%),
    radial-gradient(circle at 88% 8%, rgba(26,74,255,0.16) 0 12%, transparent 34%),
    radial-gradient(circle at 75% 78%, rgba(45,107,255,0.12) 0 11%, transparent 36%),
    radial-gradient(circle at 46% 46%, rgba(6,17,38,0.035) 0 10%, transparent 31%),
    linear-gradient(135deg, #fbfdff 0%, #f3f9ff 35%, #eef6ff 66%, #eaf2ff 100%);
  background-attachment: fixed;
}

body::before {
  background-image:
    linear-gradient(rgba(26,74,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,74,255,0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 18%, black 0%, black 42%, transparent 78%);
}

body::after {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.52), rgba(255,255,255,0.08) 42%, rgba(26,74,255,0.045)),
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.62), transparent 54%);
}

.heading-xl, .heading-lg, .heading-md { color: var(--text-primary); }
.gradient-text {
  background: linear-gradient(115deg, var(--navy) 0%, var(--blue) 50%, var(--cyan) 108%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  background: rgba(255,255,255,0.62);
  border-color: rgba(255,255,255,0.92);
  color: var(--blue);
  box-shadow: 0 12px 34px rgba(26,74,255,0.10), inset 0 1px 0 rgba(255,255,255,0.96);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 58%, #118dff 100%);
  box-shadow: 0 16px 36px rgba(26,74,255,0.30), inset 0 1px 0 rgba(255,255,255,0.38);
}
.btn-primary:hover { box-shadow: 0 24px 58px rgba(26,74,255,0.40), inset 0 1px 0 rgba(255,255,255,0.45); }
.btn-outline { background: rgba(255,255,255,0.66); border-color: rgba(255,255,255,0.92); }

.glass-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.76), rgba(255,255,255,0.42));
  border-color: rgba(255,255,255,0.88);
}
.glass-card::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), transparent 33%, rgba(0,199,255,0.095) 100%),
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.74), transparent 36%);
}

.section-light, .section-mid {
  background: linear-gradient(135deg, rgba(255,255,255,0.44), rgba(255,255,255,0.18));
}

.page-hero::before {
  background:
    radial-gradient(ellipse 72% 58% at 50% 0%, rgba(26,74,255,0.17) 0%, transparent 62%),
    radial-gradient(circle at 84% 26%, rgba(0,199,255,0.11), transparent 34%),
    radial-gradient(circle at 14% 46%, rgba(26,74,255,0.08), transparent 34%);
}

/* ───────────────────────────────────────────────────────────
   BACKGROUND REFINEMENT — softer, premium, logo-matched
   This removes the overly strong grid feel and replaces it with
   a clean professional blue/cyan aurora background.
   ─────────────────────────────────────────────────────────── */
body {
  background-color: #f7fbff;
  background-image:
    radial-gradient(ellipse 900px 520px at 8% 8%, rgba(0,199,255,0.16) 0%, rgba(0,199,255,0.075) 34%, transparent 68%),
    radial-gradient(ellipse 780px 500px at 92% 4%, rgba(26,74,255,0.145) 0%, rgba(26,74,255,0.065) 38%, transparent 72%),
    radial-gradient(ellipse 820px 560px at 86% 82%, rgba(45,107,255,0.105) 0%, rgba(45,107,255,0.052) 40%, transparent 74%),
    radial-gradient(ellipse 700px 470px at 18% 88%, rgba(0,199,255,0.085) 0%, transparent 70%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 30%, #eef7ff 68%, #f4f9ff 100%);
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(26,74,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,74,255,0.012) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.72), transparent 42%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.54), rgba(0,0,0,0.18) 48%, transparent 92%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% -12%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.42) 36%, transparent 66%),
    linear-gradient(120deg, rgba(255,255,255,0.42), rgba(255,255,255,0.05) 46%, rgba(26,74,255,0.035));
}

.section-light, .section-mid {
  background: linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.12));
}

.page-hero::before {
  background:
    radial-gradient(ellipse 760px 430px at 50% 0%, rgba(26,74,255,0.125) 0%, transparent 66%),
    radial-gradient(circle at 88% 26%, rgba(0,199,255,0.085), transparent 34%),
    radial-gradient(circle at 12% 48%, rgba(26,74,255,0.055), transparent 36%);
}
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar--scrolled, .navbar--open {
  padding: 10px 0;
  background: rgba(255,255,255,0.58);
  border-bottom: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 18px 55px rgba(31,79,170,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}
.navbar__inner { display: flex; align-items: center; gap: 40px; }
.navbar__logo, .navbar-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; transition: var(--transition); }
.navbar__logo:hover, .navbar-brand:hover { transform: translateY(-1px); opacity: 0.9; }

.navbar-logo-icon, .navbar__logo-icon {
  height: 42px; width: auto; object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(26,74,255,0.10));
}
.navbar-logo-name, .navbar__logo-name {
  height: 34px; width: auto; object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(26,74,255,0.08));
  opacity: 1;
}

.navbar__links { display: flex; align-items: center; gap: 8px; list-style: none; margin-left: auto; }
.navbar__link {
  position: relative;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 14px; font-weight: 700;
  transition: var(--transition);
}
.navbar__link:hover, .navbar__link.active {
  color: var(--blue);
  background: rgba(255,255,255,0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 10px 26px rgba(26,74,255,0.08);
}
.navbar__link.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px rgba(0,199,255,0.8);
}
.navbar__cta { padding: 10px 24px; font-size: 14px; margin-left: auto; }

.navbar__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,0.48); border: 1px solid rgba(255,255,255,0.76); box-shadow: var(--glass-shadow); }
.navbar__burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); transform-origin: center; }
.navbar__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar__mobile {
  display: flex; flex-direction: column; gap: 6px;
  max-height: 0; overflow: hidden;
  padding: 0 clamp(16px,4vw,72px);
  margin-top: 10px;
  background: rgba(255,255,255,0.62);
  border-top: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.navbar__mobile--open { max-height: 420px; padding-top: 14px; padding-bottom: 16px; }
.navbar__mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--text-secondary);
  font-size: 16px; font-weight: 700;
  transition: var(--transition);
}
.navbar__mobile-link:hover, .navbar__mobile-link.active { color: var(--blue); background: rgba(255,255,255,0.62); box-shadow: inset 0 1px 0 rgba(255,255,255,0.95); }

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; margin-left: auto; }
}
@media (min-width: 769px) { .navbar__mobile { display: none !important; } }

/* Premium light navbar refresh */
.navbar--scrolled, .navbar--open {
  background: rgba(255,255,255,0.70);
  border-bottom: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 18px 52px rgba(6,17,38,0.08), 0 12px 38px rgba(26,74,255,0.10), inset 0 1px 0 rgba(255,255,255,0.95);
}
.navbar__inner {
  min-height: 52px;
}
.navbar__link:hover, .navbar__link.active {
  color: var(--blue);
  background: rgba(255,255,255,0.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.98), 0 12px 28px rgba(26,74,255,0.10);
}
.navbar__cta {
  box-shadow: 0 12px 30px rgba(26,74,255,0.28), inset 0 1px 0 rgba(255,255,255,0.36);
}
.footer {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.54), rgba(255,255,255,0.24));
  border-top: 1px solid rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.footer__glow {
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 380px;
  background: radial-gradient(ellipse, rgba(45,107,255,0.18) 0%, rgba(0,199,255,0.08) 34%, transparent 72%);
  pointer-events: none;
}
.footer__top { position: relative; z-index: 1; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 58px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer__logo-icon { height: 46px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(26,74,255,0.10)); }
.footer__logo-name { height: 34px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(26,74,255,0.08)); opacity: 1; }
.footer__tagline { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer__desc { color: var(--text-secondary); font-size: 14px; line-height: 1.75; margin-bottom: 24px; max-width: 330px; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 14px;
  background: rgba(255,255,255,0.50);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--glass-shadow);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.footer__socials a:hover { background: linear-gradient(135deg, var(--blue), var(--cyan)); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 18px 42px rgba(26,74,255,0.28); }
.footer__socials a svg { width: 18px; height: 18px; }
.footer__col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text-primary); margin-bottom: 20px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a, .footer__col ul li span { color: var(--text-secondary); font-size: 14px; transition: var(--transition); }
.footer__col ul li a:hover { color: var(--blue); padding-left: 4px; }
.footer__contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.footer__contact-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.footer__bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(26,74,255,0.10);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { color: var(--text-muted); font-size: 13px; }

@media (max-width: 1024px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } .footer__bottom { flex-direction: column; text-align: center; } }

/* Premium footer refresh */
.footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(26,74,255,0.12), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.28));
  border-top-color: rgba(255,255,255,0.90);
}
.footer__socials a { background: rgba(255,255,255,0.66); border-color: rgba(255,255,255,0.92); }
/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 128px 0 64px;
  overflow: hidden;
  background: transparent;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 46% at 48% 4%, rgba(45,107,255,0.18) 0%, transparent 62%),
    radial-gradient(circle at 12% 44%, rgba(0,199,255,0.12), transparent 32%);
  pointer-events: none;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.42; mix-blend-mode: multiply; }
.hero__bg-glow {
  position: absolute; bottom: -20%; right: -10%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,199,255,0.18) 0%, rgba(45,107,255,0.08) 36%, transparent 72%);
  pointer-events: none;
}
.hero__content { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 64px; position: relative; z-index: 1; }
.hero__title { margin: 12px 0 20px; }
.hero__desc { color: var(--text-secondary); font-size: clamp(15px,1.5vw,18px); line-height: 1.75; max-width: 560px; margin-bottom: 24px; }
.hero__tagline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; font-family: var(--font-display); font-size: clamp(11px,1.2vw,13px); font-weight: 800; letter-spacing: 3px; color: var(--text-muted); }
.hero__tagline .dot { color: var(--blue); text-shadow: 0 0 14px rgba(0,199,255,0.75); }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero card visual */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__card { width: 100%; max-width: 370px; padding: 34px; animation: float 6s ease-in-out infinite; box-shadow: var(--shadow-blue); }
.hero__card-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero__card-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 3px; color: var(--text-primary); }
.hero__card-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; margin-top: 2px; }
.hero__card-services { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hero__card-tag { padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; background: rgba(26,74,255,0.08); color: var(--blue); border: 1px solid rgba(26,74,255,0.16); box-shadow: inset 0 1px 0 rgba(255,255,255,0.9); }
.hero__card-contact { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.hero__orbit { position: absolute; inset: -30px; pointer-events: none; }
.hero__orbit-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(26,74,255,0.24); animation: rotateGlow 20s linear infinite; }
.hero__orbit-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(0,199,255,0.95); }
.hero__orbit-dot--1 { top: 10%; left: 50%; animation: rotateGlow 8s linear infinite; }
.hero__orbit-dot--2 { bottom: 20%; right: 5%; animation: rotateGlow 12s linear infinite reverse; }
.hero__orbit-dot--3 { top: 50%; left: 5%; animation: rotateGlow 10s linear infinite; }

/* Stats */
.hero__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 60px; position: relative; z-index: 1; }
.hero__stat { padding: 28px 20px; text-align: center; background: rgba(255,255,255,0.52); border: 1px solid rgba(255,255,255,0.78); border-radius: var(--radius); box-shadow: var(--glass-shadow); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); transition: var(--transition); }
.hero__stat:hover { transform: translateY(-5px); background: rgba(255,255,255,0.72); box-shadow: var(--glass-shadow-lg); }
.hero__stat-value { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 800; color: var(--blue); line-height: 1; }
.hero__stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 60px; }
.section-desc { color: var(--text-secondary); font-size: 17px; line-height: 1.75; max-width: 590px; margin: 16px auto 0; }
.section-cta { text-align: center; margin-top: 48px; }

/* Services */
.services-section { position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { position: relative; overflow: hidden; padding: 36px 28px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,255,255,0.68), rgba(255,255,255,0.32)); border: 1px solid rgba(255,255,255,0.78); box-shadow: var(--glass-shadow); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); transition: var(--transition); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.82), transparent 36%, rgba(0,199,255,0.08)); pointer-events: none; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--glass-shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { font-size: 36px; margin-bottom: 20px; display: block; }
.service-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.service-card__desc { color: var(--text-secondary); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.service-card__link { display: none !important; }

/* Why */
.why-section { position: relative; overflow: hidden; }
.why__glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 840px; height: 430px; background: radial-gradient(ellipse, rgba(45,107,255,0.14) 0%, rgba(0,199,255,0.08) 36%, transparent 72%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card { padding: 36px 24px; text-align: center; transition: var(--transition); }
.why-card:hover { border-color: rgba(26,74,255,0.26); transform: translateY(-5px); }
.why-card__icon { font-size: 40px; margin-bottom: 20px; display: block; }
.why-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 800; margin-bottom: 12px; color: var(--text-primary); }
.why-card__desc { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

/* Process */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-step { padding: 32px 24px; position: relative; }
.process-step::after { content: ''; position: absolute; top: 52px; right: -1px; width: 42px; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); }
.process-step:last-child::after { display: none; }
.process-step__num { font-family: var(--font-display); font-size: 50px; font-weight: 800; color: var(--blue); opacity: 0.18; line-height: 1; margin-bottom: 16px; }
.process-step__connector { width: 48px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 2px; margin-bottom: 16px; }
.process-step__title { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.process-step__desc { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

/* CTA Banner */
.cta-banner { position: relative; overflow: hidden; padding: 100px 0; background: linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255,255,255,0.20)); border-top: 1px solid rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.cta-banner__glow { position: absolute; top: 50%; left: 20%; transform: translate(-50%,-50%); width: 740px; height: 430px; background: radial-gradient(ellipse, rgba(45,107,255,0.16) 0%, rgba(0,199,255,0.08) 36%, transparent 72%); pointer-events: none; }
.cta-banner__content { position: relative; z-index: 1; }

/* Hero card brand PNG images */
.hero__card-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 20px; text-align: center; }
.hero__card-icon-img { height: 66px; width: auto; object-fit: contain; filter: drop-shadow(0 14px 24px rgba(26,74,255,0.14)); }
.hero__card-name-img { height: 38px; width: auto; max-width: 260px; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(26,74,255,0.10)); }
.hero__card-tagline { font-size: 10px; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; font-weight: 800; }
.hero__card-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(26,74,255,0.18), transparent); margin-bottom: 16px; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2,1fr); } .why-grid { grid-template-columns: repeat(2,1fr); } .process-steps { grid-template-columns: repeat(2,1fr); gap: 24px; } .process-step::after { display: none; } }
@media (max-width: 768px) { .hero__content { grid-template-columns: 1fr; text-align: center; } .hero__desc { margin: 0 auto 24px; } .hero__tagline, .hero__ctas { justify-content: center; } .hero__visual { display: none; } .hero__stats { grid-template-columns: repeat(2,1fr); } .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } .hero__stats { grid-template-columns: repeat(2,1fr); gap: 10px; } .why-grid { grid-template-columns: 1fr; } .process-steps { grid-template-columns: 1fr; } .hero__ctas { flex-direction: column; align-items: center; } .btn-primary, .btn-outline { width: 100%; justify-content: center; } }

/* Premium homepage refresh */
.hero::before {
  background:
    radial-gradient(ellipse 62% 48% at 48% 4%, rgba(26,74,255,0.17) 0%, transparent 64%),
    radial-gradient(circle at 10% 42%, rgba(0,199,255,0.12), transparent 33%),
    radial-gradient(circle at 82% 48%, rgba(26,74,255,0.09), transparent 34%);
}
.hero__canvas { opacity: 0.28; }
.hero__bg-glow { background: radial-gradient(circle, rgba(0,199,255,0.18) 0%, rgba(26,74,255,0.09) 38%, transparent 72%); }
.hero__title { letter-spacing: -0.055em; }
.hero__desc { color: var(--text-secondary); }
.hero__card {
  background: linear-gradient(145deg, rgba(255,255,255,0.80), rgba(255,255,255,0.44));
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 34px 100px rgba(26,74,255,0.18), inset 0 1px 0 rgba(255,255,255,0.96);
}
.hero__card-tag { background: rgba(26,74,255,0.10); border-color: rgba(26,74,255,0.20); }
.hero__stats { gap: 14px; }
.hero__stat, .service-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(255,255,255,0.42));
  border-color: rgba(255,255,255,0.90);
  box-shadow: var(--glass-shadow);
}
.service-card::before { height: 5px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.service-card__title, .process-step__title, .why-card__title { color: var(--text-primary); }
.cta-banner {
  background:
    radial-gradient(circle at 18% 22%, rgba(0,199,255,0.12), transparent 34%),
    radial-gradient(circle at 84% 70%, rgba(26,74,255,0.13), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.24));
  border-top: 1px solid rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.86);
}

/* Softer homepage background accents */
.hero::before {
  background:
    radial-gradient(ellipse 820px 500px at 46% 0%, rgba(26,74,255,0.125) 0%, transparent 67%),
    radial-gradient(circle at 9% 42%, rgba(0,199,255,0.09), transparent 34%),
    radial-gradient(circle at 84% 52%, rgba(26,74,255,0.055), transparent 36%);
}
.hero__canvas { opacity: 0.18; }
.hero__bg-glow {
  background: radial-gradient(circle, rgba(0,199,255,0.125) 0%, rgba(26,74,255,0.055) 42%, transparent 74%);
}
.cta-banner {
  background:
    radial-gradient(circle at 18% 22%, rgba(0,199,255,0.09), transparent 36%),
    radial-gradient(circle at 84% 70%, rgba(26,74,255,0.10), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255,255,255,0.20));
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 86px;
  background: transparent;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 58% at 50% 0%, rgba(45,107,255,0.18) 0%, transparent 62%),
    radial-gradient(circle at 84% 28%, rgba(0,199,255,0.12), transparent 34%);
  pointer-events: none;
}
.page-hero__glow { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 860px; height: 430px; background: radial-gradient(ellipse, rgba(45,107,255,0.16) 0%, rgba(0,199,255,0.08) 38%, transparent 72%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__desc { color: var(--text-secondary); font-size: clamp(15px,1.5vw,18px); line-height: 1.75; max-width: 620px; margin-top: 16px; }

.services-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-detail { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 16px; padding: 36px 28px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,255,255,0.68), rgba(255,255,255,0.32)); border: 1px solid rgba(255,255,255,0.78); box-shadow: var(--glass-shadow); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); transition: var(--transition); }
.service-detail::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent, var(--blue)); }
.service-detail::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.82), transparent 36%, rgba(0,199,255,0.08)); pointer-events: none; }
.service-detail > * { position: relative; z-index: 1; }
.service-detail:hover { transform: translateY(-7px); box-shadow: var(--glass-shadow-lg); border-color: rgba(255,255,255,0.95); }
.service-detail__header { display: flex; align-items: center; gap: 14px; }
.service-detail__icon { font-size: 32px; }
.service-detail__title { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-primary); }
.service-detail__desc { color: var(--text-secondary); font-size: 14px; line-height: 1.75; }
.service-detail__features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-detail__features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.service-detail__features li svg { flex: 0 0 auto; }
.service-detail__cta { display: inline-flex; align-items: center; gap: 8px; color: var(--accent, var(--blue)); font-size: 14px; font-weight: 800; padding: 10px 0; transition: var(--transition); margin-top: auto; }
.service-detail__cta:hover { gap: 14px; filter: saturate(120%); }

@media (max-width: 1024px) { .services-detail-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .services-detail-grid { grid-template-columns: 1fr; } }

/* Premium services refresh */
.service-detail {
  background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(255,255,255,0.42));
  border-color: rgba(255,255,255,0.90);
  box-shadow: var(--glass-shadow);
}
.service-detail:hover { box-shadow: var(--glass-shadow-lg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-card { padding: 34px; }
.about-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.about-service-chip { padding: 9px 12px; text-align: center; border-radius: 999px; font-size: 13px; font-weight: 800; background: rgba(26,74,255,0.08); color: var(--blue); border: 1px solid rgba(26,74,255,0.16); box-shadow: inset 0 1px 0 rgba(255,255,255,0.9); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card { padding: 36px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { border-color: rgba(26,74,255,0.26); transform: translateY(-5px); }
.value-card__icon { font-size: 40px; display: block; margin-bottom: 20px; }
.value-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--text-primary); }
.value-card__desc { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }
.team-grid { display: flex; justify-content: center; margin-top: 40px; }
.team-card { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.34)); border: 1px solid rgba(255,255,255,0.78); border-radius: var(--radius); box-shadow: var(--glass-shadow); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); padding: 40px 36px; max-width: 390px; width: 100%; transition: var(--transition); }
.team-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.86), transparent 36%, rgba(0,199,255,0.08)); pointer-events: none; }
.team-card > * { position: relative; z-index: 1; }
.team-card:hover { transform: translateY(-7px); box-shadow: var(--glass-shadow-lg); }
.team-card__avatar { font-size: 64px; margin-bottom: 16px; }
.team-card__name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.team-card__role { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.team-card__desc { color: var(--text-secondary); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.team-card__contact a { color: var(--blue); font-size: 13px; word-break: break-all; font-weight: 700; }
.team-card__contact a:hover { color: var(--cyan); }

@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } .about-services-grid { grid-template-columns: repeat(2,1fr); } }

/* Premium about refresh */
.team-card, .value-card, .about-card {
  border-color: rgba(255,255,255,0.90);
  box-shadow: var(--glass-shadow);
}
.team-card:hover, .value-card:hover { box-shadow: var(--glass-shadow-lg); }
.contact-section {}
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-item__icon { width: 50px; height: 50px; border-radius: 16px; font-size: 20px; background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.32)); border: 1px solid rgba(255,255,255,0.78); box-shadow: var(--glass-shadow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.contact-item__title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.contact-item__val { font-size: 15px; color: var(--text-primary); font-weight: 700; word-break: break-all; transition: var(--transition); }
a.contact-item__val:hover { color: var(--blue); }
.contact-availability { display: flex; align-items: center; gap: 10px; margin-top: 32px; padding: 14px 20px; border-radius: 16px; background: rgba(16,185,129,0.10); border: 1px solid rgba(16,185,129,0.22); font-size: 14px; color: #047857; box-shadow: inset 0 1px 0 rgba(255,255,255,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.contact-availability__dot { width: 10px; height: 10px; border-radius: 50%; background: #10B981; box-shadow: 0 0 14px rgba(16,185,129,0.8); animation: pulse 2s infinite; flex-shrink: 0; }

/* Form */
.contact-form-wrap { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.34)); border: 1px solid rgba(255,255,255,0.80); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--glass-shadow-lg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); }
.contact-form-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.88), transparent 36%, rgba(0,199,255,0.08)); pointer-events: none; }
.contact-form-wrap > * { position: relative; z-index: 1; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 800; color: var(--text-primary); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea { padding: 13px 16px; border-radius: 14px; font-size: 15px; font-family: var(--font-body); border: 1px solid rgba(255,255,255,0.82); background: rgba(255,255,255,0.60); color: var(--text-primary); transition: var(--transition); outline: none; resize: vertical; box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 28px rgba(31,79,170,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(26,74,255,0.42); background: rgba(255,255,255,0.82); box-shadow: 0 0 0 4px rgba(26,74,255,0.10), 0 14px 34px rgba(31,79,170,0.10); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 16px; margin-top: 4px; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }
.form-error { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.2); color: #DC2626; padding: 12px 16px; border-radius: 14px; font-size: 14px; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.35); border-top-color: white; border-radius: 50%; animation: rotateGlow 0.7s linear infinite; }
.form-success { text-align: center; padding: 40px; }
.form-success__icon { font-size: 64px; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); }

@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .contact-form-wrap { padding: 24px 16px; border-radius: var(--radius); } }

/* Premium contact refresh */
.contact-form-wrap, .contact-item__icon {
  background: linear-gradient(145deg, rgba(255,255,255,0.80), rgba(255,255,255,0.44));
  border-color: rgba(255,255,255,0.92);
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.92);
}
.loader-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; gap: 24px; }
.loader-logo { animation: float 1.5s ease-in-out infinite; filter: drop-shadow(0 18px 34px rgba(26,74,255,0.18)); }
.loader-bar { width: 140px; height: 4px; background: rgba(255,255,255,0.56); border: 1px solid rgba(255,255,255,0.78); border-radius: 999px; overflow: hidden; box-shadow: var(--glass-shadow); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 999px; animation: load 1.2s ease-in-out infinite; box-shadow: 0 0 16px rgba(0,199,255,0.7); }
@keyframes load { 0% { width: 0%; margin-left: 0; } 50% { width: 70%; margin-left: 15%; } 100% { width: 0%; margin-left: 100%; } }

/* Static HTML compatibility helpers */
main { min-height: 40vh; }
.navbar-brand img, .footer__logo img, .hero__card-brand img { display: block; }
.page { display: none; }
.page.active { display: block; }
.footer__socials a svg { width: 18px; height: 18px; }
.form-message { display: none; margin-bottom: 16px; }
.form-message.show { display: block; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; z-index: 900; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg,var(--blue),var(--cyan)); box-shadow: 0 18px 42px rgba(26,74,255,.28); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.footer__socials a { font-weight: 800; }

/* ==========================================================
   RESPONSIVE PATCH — iPhone SE / small phone support
   Keeps the same design, but prevents overflow and broken grids.
   ========================================================== */
@media (max-width: 768px) {
  html, body { width: 100%; overflow-x: hidden; }
  .container { max-width: 100%; padding-left: 16px; padding-right: 16px; }

  .navbar { padding: 10px 0; }
  .navbar__inner { gap: 10px; min-height: 52px; }
  .navbar-brand { min-width: 0; gap: 8px; }
  .navbar-logo-icon, .navbar__logo-icon { height: 34px; flex: 0 0 auto; }
  .navbar-logo-name, .navbar__logo-name { height: 24px; max-width: 145px; object-fit: contain; }
  .navbar__burger { flex: 0 0 auto; }
  .navbar__mobile { padding-left: 16px; padding-right: 16px; }
  .navbar__mobile--open { padding-top: 12px; padding-bottom: 14px; }

  .hero { min-height: auto; padding: 104px 0 54px; }
  .hero__content { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero__visual { display: none !important; }
  .hero__title { margin-top: 10px; margin-bottom: 16px; }
  .heading-xl { font-size: clamp(34px, 11vw, 48px); line-height: 1.05; letter-spacing: -0.04em; }
  .heading-lg { font-size: clamp(28px, 9vw, 40px); line-height: 1.08; }
  .heading-md { font-size: clamp(20px, 7vw, 28px); }
  .hero__desc, .page-hero__desc, .section-desc { font-size: 15px; line-height: 1.7; }
  .hero__tagline { justify-content: center; gap: 8px; letter-spacing: 1.8px; font-size: 10px; margin-bottom: 28px; }
  .hero__ctas { justify-content: center; gap: 12px; }
  .btn-primary, .btn-outline { min-height: 46px; padding: 12px 20px; font-size: 14px; }

  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 34px; }
  .hero__stat { padding: 20px 10px; }
  .hero__stat-value { font-size: 30px; }
  .hero__stat-label { font-size: 12px; }

  .section { padding: 62px 0; }
  .section-header { margin-bottom: 36px; }
  .services-grid,
  .services-detail-grid,
  .why-grid,
  .values-grid,
  .process-steps,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr !important; gap: 18px; }

  .service-card,
  .service-detail,
  .why-card,
  .value-card,
  .team-card,
  .about-card,
  .contact-form-wrap { width: 100%; max-width: 100%; }

  .service-card { padding: 28px 22px; }
  .service-detail { padding: 30px 22px; }
  .why-card, .value-card { padding: 30px 20px; }
  .process-step { padding: 24px 8px; text-align: left; }
  .process-step::after { display: none; }

  .page-hero { padding: 112px 0 58px; }
  .page-hero .container { text-align: center; }
  .page-hero__desc { margin-left: auto; margin-right: auto; }

  .about-grid { gap: 34px; }
  .about-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { margin-top: 28px; }

  .contact-grid { gap: 34px; }
  .contact-item { gap: 12px; }
  .contact-item__icon { width: 44px; height: 44px; border-radius: 14px; }
  .contact-form-wrap { padding: 24px 16px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr !important; gap: 16px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 14px; }

  .cta-banner { padding: 68px 0; text-align: center; }
  .cta-banner .btn-primary,
  .cta-banner .btn-outline,
  .hero__ctas .btn-primary,
  .hero__ctas .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  .footer { padding-top: 58px; }
  .footer__top { grid-template-columns: 1fr !important; gap: 30px; padding-bottom: 36px; }
  .footer__brand { grid-column: auto !important; }
  .footer__logo-icon { height: 38px; }
  .footer__logo-name { height: 28px; max-width: 160px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .navbar-logo-icon, .navbar__logo-icon { height: 31px; }
  .navbar-logo-name, .navbar__logo-name { height: 21px; max-width: 118px; }
  .navbar__burger { padding: 8px; }
  .navbar__burger span { width: 20px; }

  .hero { padding-top: 96px; }
  .heading-xl { font-size: 32px; }
  .heading-lg { font-size: 27px; }
  .tag { font-size: 9.5px; letter-spacing: 1.3px; padding: 6px 12px; }
  .hero__desc, .section-desc, .page-hero__desc { font-size: 14px; }
  .hero__tagline { font-size: 9px; letter-spacing: 1.2px; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__stat { padding: 18px 6px; }
  .hero__stat-value { font-size: 26px; }
  .hero__stat-label { font-size: 11px; }

  .service-card, .service-detail, .why-card, .value-card { padding-left: 18px; padding-right: 18px; }
  .about-services-grid { grid-template-columns: 1fr; }
  .contact-item__val { font-size: 13px; }
  .footer__socials a { width: 38px; height: 38px; }
}

/* ==========================================================
   FULL DEVICE / ORIENTATION RESPONSIVE HARDENING
   Covers portrait + landscape phones/tablets and prevents
   viewport-height, grid, image and long-text overflow issues.
   ========================================================== */
img, svg, canvas, video { max-width: 100%; }
section, header, footer, main { max-width: 100%; }
.navbar, .footer, .hero, .section, .page-hero { overflow-x: clip; }
.hero__text, .section-header, .page-hero .container, .footer__col, .contact-info, .contact-form-wrap { min-width: 0; }
.hero__title, .heading-xl, .heading-lg, .heading-md, .service-card__title, .service-detail__title, .team-card__name { overflow-wrap: anywhere; }
.contact-item__val, .footer__contact-list a, .team-card__contact a { overflow-wrap: anywhere; word-break: break-word; }

/* Tablet portrait + compact laptops */
@media (min-width: 769px) and (max-width: 1100px) {
  .container { max-width: 100%; padding-left: 28px; padding-right: 28px; }
  .hero__content { grid-template-columns: 1.05fr .95fr; gap: 36px; }
  .hero__card { max-width: 330px; padding: 28px; }
  .services-grid, .services-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid, .values-grid, .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .process-step::after { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Phone landscape and short-height devices */
@media (max-height: 520px) and (orientation: landscape) {
  .navbar { padding: 8px 0; }
  .navbar--scrolled, .navbar--open { padding: 6px 0; }
  .navbar__inner { min-height: 44px; }
  .navbar-logo-icon, .navbar__logo-icon { height: 30px; }
  .navbar-logo-name, .navbar__logo-name { height: 20px; max-width: 132px; }
  .navbar__link { padding: 7px 12px; font-size: 13px; }
  .navbar__cta { padding: 8px 18px; font-size: 13px; }

  .hero { min-height: auto; padding: 88px 0 42px; }
  .hero__content { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero__visual { display: none !important; }
  .heading-xl { font-size: clamp(30px, 7vw, 44px); line-height: 1.05; }
  .hero__desc { max-width: 720px; margin-left: auto; margin-right: auto; }
  .hero__tagline { justify-content: center; margin-bottom: 22px; }
  .hero__ctas { justify-content: center; }
  .hero__stats { margin-top: 28px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero__stat { padding: 16px 8px; }
  .hero__stat-value { font-size: 24px; }
  .hero__stat-label { font-size: 11px; }

  .page-hero { padding: 86px 0 44px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .cta-banner { padding: 54px 0; }
}

/* Landscape phones with enough width but limited height */
@media (max-width: 950px) and (orientation: landscape) {
  .container { max-width: 100%; padding-left: 18px; padding-right: 18px; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; margin-left: auto; }
  .navbar__mobile { display: flex; }

  .services-grid, .services-detail-grid, .why-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 16px; }
  .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 16px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr 1fr !important; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 24px; }
  .footer__brand { grid-column: 1 / -1 !important; }
}

/* Very narrow portrait devices */
@media (max-width: 340px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .navbar-logo-name, .navbar__logo-name { max-width: 104px; height: 19px; }
  .navbar-logo-icon, .navbar__logo-icon { height: 29px; }
  .heading-xl { font-size: 29px; }
  .heading-lg { font-size: 25px; }
  .btn-primary, .btn-outline { width: 100%; padding-left: 14px; padding-right: 14px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { padding: 16px 8px; }
  .service-card, .service-detail, .why-card, .value-card, .team-card, .about-card, .contact-form-wrap { padding-left: 14px; padding-right: 14px; }
  .contact-item { align-items: flex-start; }
  .contact-item__icon { width: 40px; height: 40px; flex: 0 0 40px; }
}

/* Larger tablets in landscape */
@media (min-width: 951px) and (max-width: 1180px) and (orientation: landscape) {
  .container { max-width: 100%; padding-left: 34px; padding-right: 34px; }
  .hero__content { gap: 40px; }
  .hero__card { max-width: 340px; }
  .services-grid, .services-detail-grid { gap: 20px; }
}

/* Touch devices: avoid hover movement causing accidental layout jitter */
@media (hover: none) and (pointer: coarse) {
  .glass-card:hover,
  .service-card:hover,
  .service-detail:hover,
  .team-card:hover,
  .value-card:hover,
  .why-card:hover,
  .btn-primary:hover,
  .btn-outline:hover {
    transform: none;
  }
}
.footer__socials a[aria-label="WhatsApp"], .footer__socials a[title="WhatsApp"] { color: #128C7E; }
.footer__socials a[aria-label="WhatsApp"]:hover, .footer__socials a[title="WhatsApp"]:hover { color: #fff; background: #25D366; border-color: #25D366; }

/* ==========================================================
   CTA ALIGNMENT PATCH — homepage final CTA center alignment
   Ensures "Let's Build Something Extraordinary Together" and
   its buttons stay centered on iPhone SE, phones, tablets and desktop.
   ========================================================== */
.cta-banner,
.cta-banner__content,
.cta-banner__content > div {
  text-align: center;
}

.cta-banner .heading-lg {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 680px;
}

.cta-banner__content > div > div[style*="display:flex"],
.cta-banner .cta-actions {
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .cta-banner__content > div > div[style*="display:flex"],
  .cta-banner .cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px !important;
  }

  .cta-banner .btn-primary,
  .cta-banner .btn-outline {
    width: min(100%, 320px) !important;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .cta-banner__content > div > div[style*="display:flex"],
  .cta-banner .cta-actions {
    justify-content: center !important;
    flex-wrap: wrap;
  }
}
