/* ── CSS VARIABLES ── */
:root {
  --cyan: #76D6E9;
  --cyan-d: #4bbdd4;
  --cyan-xl: #e8f8fc;
  --navy: #1A324B;
  --navy-m: #2a4a6b;
  --navy-d: #0f1e2d;
  --bg: #fff;
  --bg-soft: #f4f9fb;
  --bg-mid: #eaf5f9;
  --card: #fff;
  --card2: #f0f8fb;
  --border: #c8eaf2;
  --border-s: #ddf0f6;
  --text: #0f1e2d;
  --text-m: #2a4a6b;
  --text-s: #5a7a94;
  --text-xs: #8aabb8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #eaf5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--cyan-d);
  border-radius: 3px;
}

/* ── NAVBAR ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

#navbar {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border-s);
  backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img {
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-m);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-cta-btn {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.nav-cta-btn:hover {
  background: var(--navy-m);
  transform: translateY(-1px);
}

.nav-link-career {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-hiring-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  animation: hiring-blink 2s ease-in-out infinite;
}

@keyframes hiring-blink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
  }
}

/* Mega menu — CSS :focus-within hover */
.has-dropdown {
  position: relative;
}

.nd-arrow {
  font-size: 9px;
  margin-left: 4px;
  opacity: .5;
  transition: transform .25s;
}

.has-dropdown:hover .nd-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.mega-menu {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  top: auto;
  background: #fff;
  border: 1px solid var(--border-s);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(26, 50, 75, 0.14), 0 0 0 1px rgba(118, 214, 233, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s, transform .22s ease;
  min-width: 720px;
  z-index: 9999;
  overflow: hidden;
}

.mega-menu-wide {
  min-width: 900px;
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Panel header */
.mega-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  background: linear-gradient(135deg, #f8fcff, #eaf5f9);
  border-bottom: 1px solid var(--border-s);
}

.mega-panel-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}

.mega-panel-sub {
  font-size: 12px;
  color: var(--text-s);
  margin-top: 2px;
}

.mega-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}

.mega-header-cta:hover {
  background: var(--navy-m);
  transform: translateY(-1px);
}

/* Inner padding */
.mega-inner {
  padding: 20px 24px;
}

/* ── Services grid ── */
.mega-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mega-svc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .18s, border-color .18s, transform .18s;
  position: relative;
  overflow: hidden;
}

.mega-svc-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--svc-color, var(--cyan-d));
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity .18s;
}

.mega-svc-item:hover {
  background: var(--bg-soft);
  border-color: var(--border-s);
  transform: translateX(3px);
}

.mega-svc-item:hover::before {
  opacity: 1;
}

.mega-svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  font-size: 15px;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}

.mega-svc-item:hover .mega-svc-icon {
  background: color-mix(in srgb, var(--svc-color, var(--cyan-d)) 12%, #fff);
  border-color: color-mix(in srgb, var(--svc-color, var(--cyan-d)) 40%, #fff);
  transform: scale(1.1);
}

.mega-svc-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.mega-svc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.mega-svc-desc {
  font-size: 11px;
  color: var(--text-xs);
  margin-top: 2px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-svc-item:hover .mega-svc-name {
  color: var(--navy);
}

.mega-svc-arrow {
  font-size: 10px;
  color: var(--text-xs);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s, transform .18s;
  flex-shrink: 0;
}

.mega-svc-item:hover .mega-svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Technology grid ── */
.mega-inner-tech {
  padding: 20px 24px;
}

.mega-tech-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 16px;
}

.mega-tech-col {
  padding: 0;
}

.mega-tech-col-head {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-s);
}

.mega-tech-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-tech-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-s);
  text-decoration: none;
  padding: 5px 6px;
  border-radius: 7px;
  transition: background .15s, color .15s;
}

.mega-tech-link:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

.mega-tech-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .8;
  transition: opacity .15s, transform .15s;
}

.mega-tech-link:hover .mega-tech-dot {
  opacity: 1;
  transform: scale(1.3);
}

/* Footer bar */
.mega-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-s);
}

.mega-footer-stats {
  display: flex;
  gap: 24px;
}

.mega-fstat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mega-fstat-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.mega-fstat-label {
  font-size: 10px;
  color: var(--text-xs);
  letter-spacing: .04em;
}

.mega-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: gap .2s;
}

.mega-footer-link:hover {
  gap: 10px;
}

/* Hamburger (CSS-only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

.nav-toggle-check:checked~.mobile-menu {
  display: flex;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 16px 16px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border-s);
}

.mobile-menu li {
  list-style: none;
}

.mobile-menu li a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-m);
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s;
}

.mobile-menu li a:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

@media(max-width:900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ── COMMON SECTION STYLES ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cyan-xl);
  border: 1px solid var(--cyan-d);
  color: var(--navy);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.section-title .accent {
  background: linear-gradient(135deg, var(--cyan-d), var(--navy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-line {
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan-d), var(--navy));
  margin-top: 16px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 50, 75, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color .3s, background .3s;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-soft);
}

/* ── TECH TICKER ── */
.tech-ticker {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  overflow: hidden;
  position: relative;
  padding: 14px 0;
}

.tech-ticker::before,
.tech-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.tech-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft), transparent);
}

.tech-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-soft), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-s);
}

.ticker-item i {
  color: var(--navy-m);
  font-size: 15px;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.hero-left {
  position: relative;
  width: 52%;
  flex-shrink: 0;
  overflow: hidden;
  background: #0a0f1a;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 80px;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hero-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 15, 26, .3) 0%, rgba(10, 15, 26, .1) 40%, rgba(10, 15, 26, .7) 100%), linear-gradient(to right, transparent 60%, rgba(10, 15, 26, .8) 100%);
  pointer-events: none;
}

.hero-left-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 68px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(118, 214, 233, .15);
  border: 1px solid rgba(118, 214, 233, .35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #76D6E9;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #76D6E9;
  flex-shrink: 0;
  animation: pulse-ring 2s ease-out infinite;
}

.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 18px;
}

.hero-headline .hl-accent {
  background: linear-gradient(135deg, #76D6E9, #4bbdd4, #a8edff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .65);
  max-width: 420px;
  margin-bottom: 20px;
}

/* Trust signals */
.hero-trust-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
}

/* Recent win pill */
.hero-recent-win {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 28px;
  transition: background .2s;
}

.hero-recent-win:hover {
  background: rgba(255, 255, 255, .09);
}

.hero-win-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(245, 158, 11, .15);
  border: 1px solid rgba(245, 158, 11, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-win-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.hero-win-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.hero-win-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  background: rgba(16, 185, 129, .2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, .3);
  padding: 3px 10px;
  border-radius: 100px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #76D6E9, #4bbdd4);
  color: #0a0f1a;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(118, 214, 233, .5);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: background .3s, border-color .3s;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .4);
}

.hero-stats-row {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  width: fit-content;
}

.hero-stat {
  padding: 14px 22px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #76D6E9, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px;
  letter-spacing: .04em;
}

.hero-clients-pill {
  position: absolute;
  top: 72px;
  right: 72px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 8px 16px 8px 8px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .3);
  background: linear-gradient(135deg, var(--cyan-d), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-clients-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.hero-tech-pill {
  position: absolute;
  bottom: 170px;
  right: 72px;
  z-index: 3;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(118, 214, 233, .25);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tech-pill-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-tech-pill-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 32px;
  background: #fff;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 50, 75, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 50, 75, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-right-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 214, 233, .12) 0%, transparent 65%);
  pointer-events: none;
}

.orbit-card {
  position: absolute;
  z-index: 20;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(26, 50, 75, .1);
  white-space: nowrap;
}

.orbit-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.orbit-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.orbit-card-sub {
  font-size: 10px;
  color: var(--text-xs);
}

/* Orbit animation */
.orbit-scene {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orbit-scene::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(26, 50, 75, .12);
  pointer-events: none;
}

.orbit-scene::after {
  content: '';
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px dashed rgba(26, 50, 75, .08);
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.orbit-ring-1 {
  animation: orbit-cw 45s linear infinite;
}

.orbit-ring-2 {
  animation: orbit-ccw 30s linear infinite;
}

@keyframes orbit-cw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-ccw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -28px 0 0 -28px;
}

.orbit-ring-1 .orbit-icon .tech-bubble {
  animation: counter-cw 45s linear infinite;
}

.orbit-ring-2 .orbit-icon .tech-bubble {
  animation: counter-ccw 30s linear infinite;
}

@keyframes counter-cw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes counter-ccw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.tech-bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 50, 75, .1), 0 0 0 4px rgba(118, 214, 233, .06);
  transition: transform .3s, border-color .3s;
}

.tech-bubble:hover {
  transform: scale(1.18);
  border-color: var(--cyan-d);
}

.tech-bubble-sm {
  width: 44px;
  height: 44px;
}

.orbit-center {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: center-entrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes center-entrance {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.orbit-center-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 214, 233, .25) 0%, rgba(118, 214, 233, .08) 50%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}

/* spinning conic ring around logo */
.orbit-center::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 60%, rgba(118,214,233,.9) 80%, transparent 100%);
  animation: spin-ring 4s linear infinite;
  z-index: -1;
}

/* second counter-spin ring */
.orbit-center::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent 60%, rgba(99,179,237,.5) 80%, transparent 100%);
  animation: spin-ring 6s linear infinite reverse;
  z-index: -1;
}

@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

@keyframes glow-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: .6;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

.orbit-center-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 3px rgba(118, 214, 233, .3),
    0 0 0 8px rgba(118, 214, 233, .08),
    0 0 40px rgba(118, 214, 233, .25),
    0 8px 40px rgba(0,0,0,.2);
  overflow: hidden;
  padding: 0;
  animation: logo-float 5s ease-in-out infinite, logo-glow-pulse 3s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease;
}

.orbit-center-inner:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 4px rgba(118, 214, 233, .5),
    0 0 60px rgba(118, 214, 233, .4),
    0 12px 50px rgba(0,0,0,.25);
}

.orbit-center-inner img {
  animation: logo-scale-breathe 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes logo-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(118, 214, 233, .3),
      0 0 0 8px rgba(118, 214, 233, .08),
      0 0 40px rgba(118, 214, 233, .25),
      0 8px 40px rgba(0,0,0,.2);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(118, 214, 233, .55),
      0 0 0 12px rgba(118, 214, 233, .12),
      0 0 70px rgba(118, 214, 233, .45),
      0 8px 40px rgba(0,0,0,.2);
  }
}

@keyframes logo-scale-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

.hero-iso-badge {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(26, 50, 75, .08);
  white-space: nowrap;
}

.hero-iso-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
}

.hero-iso-badge small {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-s);
}

/* Mobile hero */
@media(max-width:1023px) {
  .hero-left {
    display: none;
  }

  .hero-right {
    padding: 110px 24px 60px;
    min-height: 100vh;
  }

  .hero-mobile {
    display: flex !important;
  }
}

.hero-mobile {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  z-index: 10;
  background: var(--bg);
  text-align: center;
}

/* ── ABOUT ── */
#about {
  background: var(--bg);
  overflow: hidden;
  padding: 96px 0;
}

.about-img-wrap {
  position: relative;
  height: 560px;
  flex-shrink: 0;
}

.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 10;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(26, 50, 75, .14);
  min-width: 150px;
}

.about-exp-num {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--cyan-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.about-exp-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-s);
  margin-top: 4px;
}

.about-cert-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  z-index: 10;
  background: var(--navy);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(26, 50, 75, .25);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border-s);
  border-radius: 16px;
  transition: background .3s, border-color .3s, transform .3s;
}

.about-feature:hover {
  background: var(--cyan-xl);
  border-color: var(--cyan-d);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}

.about-feature:hover .about-feature-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.about-feature:hover .about-feature-icon i {
  color: #fff !important;
}

.about-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.about-feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-s);
}

.about-stats {
  display: flex;
  gap: 12px;
}

.about-stat-pill {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-s);
  border-radius: 14px;
  transition: background .3s, border-color .3s, transform .3s;
}

.about-stat-pill:hover {
  background: var(--cyan-xl);
  border-color: var(--cyan-d);
  transform: translateY(-3px);
}

.about-stat-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--cyan-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-xs);
  margin-top: 4px;
}

/* ── SERVICES ── */
#services {
  background: linear-gradient(135deg, #0a0f1a 0%, #0f1e2d 40%, #0d1829 70%, #0a1520 100%);
  overflow: hidden;
  position: relative;
  padding: 96px 0;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(118, 214, 233, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(118, 214, 233, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

#services .section-tag {
  background: rgba(118, 214, 233, .12);
  border-color: rgba(118, 214, 233, .3);
  color: #76D6E9;
}

#services .section-title {
  color: #fff;
}

#services .section-title .accent {
  background: linear-gradient(135deg, #76D6E9, #4bbdd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#services .section-line {
  background: linear-gradient(90deg, #76D6E9, rgba(118, 214, 233, .2));
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media(max-width:1100px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 28px 24px 22px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.34, 1.2, .64, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 214, 233, .6), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.svc-card:hover {
  border-color: rgba(118, 214, 233, .35);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(118, 214, 233, .08);
  background: rgba(255, 255, 255, .07);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .15);
  letter-spacing: .1em;
}

.svc-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(118, 214, 233, .1);
  border: 1px solid rgba(118, 214, 233, .2);
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  flex-shrink: 0;
}

.svc-card:hover .svc-icon-box {
  background: linear-gradient(135deg, #76D6E9, #4bbdd4);
  border-color: transparent;
  transform: scale(1.1) rotate(-6deg);
}

.svc-card:hover .svc-icon-box i {
  color: #0a0f1a !important;
}

.svc-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.svc-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  flex: 1;
}

.svc-card:hover .svc-desc {
  color: rgba(255, 255, 255, .7);
}

.svc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.svc-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .25s;
}

.svc-card:hover .svc-tag {
  background: rgba(118, 214, 233, .15);
  color: #76D6E9;
  border-color: rgba(118, 214, 233, .3);
}

/* ── COURSES ── */
#courses {
  background: var(--bg-soft);
  padding: 96px 0;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media(max-width:700px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 18px;
  padding: 28px;
  transition: border-color .35s, box-shadow .35s, transform .35s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card:hover {
  border-color: var(--cyan-d);
  box-shadow: 0 16px 48px rgba(118, 214, 233, .12);
  transform: translateY(-4px);
}

.course-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.course-icon.cyan {
  background: var(--cyan-xl);
  border: 1px solid var(--cyan-d);
}

.course-icon.navy {
  background: rgba(26, 50, 75, .08);
  border: 1px solid rgba(26, 50, 75, .15);
}

.course-icon.cyan i {
  color: var(--navy);
}

.course-icon.navy i {
  color: var(--navy-m);
}

.course-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.course-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-s);
  flex: 1;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.badge-cyan {
  background: var(--cyan-xl);
  color: var(--navy);
  border: 1px solid var(--cyan-d);
}

.badge-navy {
  background: rgba(26, 50, 75, .08);
  color: var(--navy-m);
  border: 1px solid rgba(26, 50, 75, .15);
}

.course-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-d);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.course-link:hover {
  gap: 10px;
}

/* ── PORTFOLIO ── */
#portfolio {
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
  padding: 96px 0;
}

#portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 50, 75, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 50, 75, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.pf-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pf-filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-s);
  text-decoration: none;
  transition: all .22s;
}

.pf-filter-btn:hover {
  border-color: var(--cyan-d);
  color: var(--navy);
}

.pf-filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(26, 50, 75, .18);
}

.pf-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media(max-width:1024px) {
  .pf-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .pf-grid-home {
    grid-template-columns: 1fr;
  }
}

.pf-card {
  background: #fff;
  border: 1px solid var(--border-s);
  border-radius: 18px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.34, 1.2, .64, 1);
}

.pf-card:hover {
  transform: translateY(-7px);
  border-color: var(--cyan-d);
  box-shadow: 0 24px 56px rgba(118, 214, 233, .13);
}

.pf-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--bg-mid);
}

.pf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}

.pf-card:hover .pf-card-img img {
  transform: scale(1.07);
}

.pf-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, .5);
}

.pf-card-status {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pf-card-status.live {
  background: rgba(16, 185, 129, .15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, .3);
}

.pf-card-status.soon {
  background: rgba(245, 158, 11, .15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, .3);
}

.pf-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.live .pf-status-dot {
  background: #10b981;
}

.soon .pf-status-dot {
  background: #f59e0b;
}

.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, .75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.pf-card:hover .pf-card-overlay {
  opacity: 1;
}

.pf-overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.pf-card-body {
  padding: 14px 16px 16px;
}

.pf-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.pf-card-desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-s);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pf-card-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.pf-card-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--text-m);
  border: 1px solid var(--border-s);
  transition: all .2s;
}

.pf-card:hover .pf-card-tag {
  background: var(--cyan-xl);
  color: var(--navy);
  border-color: var(--cyan-d);
}

.pf-view-all-banner {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.pf-banner-num {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #76D6E9, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.pf-banner-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
}

.pf-banner-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pf-banner-cat {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pf-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #76D6E9, #4bbdd4);
  color: #0a0f1a;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}

.pf-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(118, 214, 233, .45);
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--bg-soft);
  padding: 96px 0;
}

.testi-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(118, 214, 233, .08);
  transition: opacity .35s ease, transform .35s ease;
  opacity: 1;
  transform: translateX(0);
}

.testi-quote {
  font-size: 17px;
  line-height: 1.75;
  font-style: italic;
  color: var(--text-m);
  margin: 16px 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.testi-role {
  font-size: 13px;
  color: var(--text-xs);
  margin-top: 2px;
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testi-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-s);
  cursor: pointer;
  transition: all .2s;
}

.testi-nav-btn:hover {
  border-color: var(--cyan-d);
  color: var(--navy);
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  display: inline-block;
  cursor: pointer;
  transition: all .3s;
}

.testi-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 5px;
}

.testi-dot:hover {
  background: var(--text-xs);
}

/* ── CONTACT ── */
#contact {
  background: var(--bg);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-wrap {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-m);
}

.form-group input,
.form-group textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan-d);
  box-shadow: 0 0 0 3px rgba(118, 214, 233, .15);
}

.form-group textarea {
  resize: none;
}

.form-error {
  font-size: 12px;
  color: #f87171;
  margin-top: 4px;
}

.form-success {
  background: rgba(118, 214, 233, .1);
  border: 1px solid rgba(118, 214, 233, .3);
  color: var(--cyan-d);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.contact-info-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cyan-xl);
  border: 1px solid var(--cyan-d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--navy);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}

.contact-info-val {
  font-size: 14px;
  color: var(--text-m);
  text-decoration: none;
}

.contact-info-val:hover {
  color: var(--navy);
}

.contact-divider {
  height: 1px;
  background: var(--border);
}

.social-heading {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-xs);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.social-btn:hover {
  border-color: var(--cyan-d);
  color: var(--navy);
}

/* ── FOOTER — styles moved to includes/footer.php ── */