:root {
  --ta-black: #020812;
  --ta-midnight: #020b14;
  --ta-deep: #031323;
  --ta-navy: #061c33;
  --ta-blue-dark: #073e91;
  --ta-blue: #0b6ff0;
  --ta-cyan: #31d7ff;
  --ta-gold: #d8a63a;
  --ta-gold-light: #f2c75c;
  --ta-text: #f3f8ff;
  --ta-soft-text: #d7e6f7;
  --ta-muted: #b5c7dc;
  --ta-panel: rgba(255, 255, 255, 0.075);
  --ta-panel-strong: rgba(255, 255, 255, 0.11);
  --ta-panel-dark: rgba(2, 11, 20, 0.72);
  --ta-line: rgba(255, 255, 255, 0.14);
  --ta-line-strong: rgba(49, 215, 255, 0.28);
  --ta-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --ta-card-shadow: 0 22px 58px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
body.home-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ta-text);
  background:
    radial-gradient(circle at 8% 0%, rgba(49, 215, 255, 0.14), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(216, 166, 58, 0.10), transparent 30rem),
    linear-gradient(180deg, #020812 0%, #061c33 40%, #031323 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1560px, calc(100% - 44px));
  margin: 0 auto;
}

/* CLICK EFFECT */

.click-animate {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.click-animate::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.45s ease, height 0.45s ease, opacity 0.65s ease;
  pointer-events: none;
}

.click-animate.clicked::after {
  width: 260px;
  height: 260px;
  opacity: 1;
}

/* TOP BAR */

.tech-topbar {
  position: relative;
  z-index: 90;
  color: var(--ta-text);
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.98), rgba(6, 28, 51, 0.96), rgba(7, 62, 145, 0.90));
  border-bottom: 1px solid var(--ta-line-strong);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.tech-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(49, 215, 255, 0.10), transparent 36%, rgba(216, 166, 58, 0.08) 76%, transparent),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(255, 255, 255, 0.035) 36px 37px);
  opacity: 0.58;
  pointer-events: none;
}

.tech-topbar-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1.45fr;
  gap: 28px;
  align-items: center;
  min-height: 62px;
  padding: 13px 0;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar-pulse {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ta-blue), var(--ta-deep));
  border: 1px solid rgba(49, 215, 255, 0.45);
  box-shadow: 0 0 22px rgba(49, 215, 255, 0.28);
  flex: 0 0 auto;
}

.topbar-title {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
}

.topbar-subtitle {
  margin-top: 4px;
  font-size: 0.73rem;
  color: #e6f3ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.topbar-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(49, 215, 255, 0.60);
  background: rgba(5, 31, 57, 0.92);
}

.topbar-chip strong {
  color: var(--ta-gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.67rem;
}

.topbar-chip span {
  color: #ffffff;
}

.topbar-policy {
  background: linear-gradient(135deg, rgba(216, 166, 58, 0.28), rgba(6, 28, 51, 0.96));
  border-color: rgba(216, 166, 58, 0.55);
}

/* NAVIGATION */

.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background:
    linear-gradient(90deg, rgba(6, 28, 51, 0.98), rgba(8, 40, 70, 0.98), rgba(7, 62, 145, 0.95));
  border-bottom: 1px solid rgba(49, 215, 255, 0.24);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 235px;
}

.brand-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 14px;
  background: transparent !important;
  box-shadow: none;
}

.brand-name {
  font-weight: 900;
  font-size: 1.02rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: 0.72rem;
  color: var(--ta-gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 12px;
  color: #edf6ff;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ta-gold-light), var(--ta-gold));
  color: #061c33;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

/* MOBILE MENU */

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(6, 28, 51, 0.22);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 130;
}

.menu-btn-lines {
  display: grid;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.menu-btn-lines span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-btn[aria-expanded="true"] .menu-btn-lines span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn-lines span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] .menu-btn-lines span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 auto auto;
  width: min(410px, 92vw);
  min-height: 100vh;
  z-index: 120;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(49, 215, 255, 0.15), transparent 18rem),
    linear-gradient(180deg, #031323, #061c33);
  color: #ffffff;
  transform: translateX(105%);
  transition: transform 0.32s ease;
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.34);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.mobile-menu-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mobile-menu-subtitle {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--ta-soft-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.close-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.7rem;
  cursor: pointer;
}

.mobile-links {
  display: grid;
  gap: 10px;
  padding: 22px 0;
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-weight: 800;
}

.mobile-links a::after {
  content: "→";
  color: var(--ta-cyan);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* FLOATING WHATSAPP */

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #061c33 0%, #0b6ff0 54%, #31d7ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 20px 50px rgba(11, 111, 240, 0.34),
    0 0 0 8px rgba(49, 215, 255, 0.10);
}

.whatsapp svg {
  width: 30px;
  height: 30px;
}

/* HERO */

.hero,
.page-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(49, 215, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(216, 166, 58, 0.09), transparent 24rem),
    linear-gradient(135deg, #020812 0%, #061c33 50%, #082846 100%);
}

.executive-hero {
  padding: 74px 0 50px;
}

.executive-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.36;
  pointer-events: none;
}

.executive-hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.82fr);
  gap: 48px;
  align-items: stretch;
  padding: 44px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(3, 19, 35, 0.98), rgba(6, 28, 51, 0.96)),
    radial-gradient(circle at 82% 12%, rgba(49, 215, 255, 0.13), transparent 20rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--ta-shadow);
  overflow: hidden;
}

.executive-hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.38;
  pointer-events: none;
}

.executive-hero-copy,
.executive-command-panel {
  position: relative;
  z-index: 2;
}

.executive-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding: 10px 0;
}

.executive-kicker,
.page-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ta-gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.executive-kicker::before,
.page-label::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ta-gold-light), var(--ta-cyan));
}

.executive-kicker {
  margin-bottom: 24px;
}

.executive-hero-copy h1 {
  max-width: 1050px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.executive-lead {
  max-width: 960px;
  margin: 26px 0 0;
  color: #edf6ff;
  font-size: 1.1rem;
  line-height: 1.82;
  font-weight: 520;
}

.executive-assurance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  max-width: 980px;
}

.executive-assurance-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ta-panel);
  border: 1px solid var(--ta-line);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ta-blue), var(--ta-blue-dark));
  box-shadow: 0 16px 42px rgba(11, 111, 240, 0.32);
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.10);
}

.executive-command-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(2, 11, 20, 0.96), rgba(6, 28, 51, 0.90));
  border: 1px solid rgba(49, 215, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 24px 60px rgba(0, 0, 0, 0.22);
}

.command-panel-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.command-panel-head span {
  display: block;
  color: var(--ta-gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.command-panel-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.command-stage-list {
  display: grid;
  gap: 15px;
  margin: 24px 0;
}

.command-stage {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 17px;
  border-radius: 20px;
  background: var(--ta-panel);
  border: 1px solid var(--ta-line);
}

.stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(11, 111, 240, 0.95), rgba(49, 215, 255, 0.28));
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.command-stage h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.command-stage p {
  margin: 0;
  color: var(--ta-soft-text);
  font-size: 0.88rem;
  line-height: 1.55;
}

.command-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.command-footer strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  margin-bottom: 5px;
}

.command-footer span {
  display: block;
  color: var(--ta-soft-text);
  font-size: 0.78rem;
  line-height: 1.45;
}

.command-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ta-gold-light), var(--ta-gold));
  color: #061c33;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

/* PAGE HERO */

.page-hero {
  padding: 78px 0;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.page-hero h1 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-hero p {
  margin: 22px 0 0;
  max-width: 1000px;
  color: #e7f2ff;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* SECTIONS — ZERO WHITE BACKGROUNDS */

.section,
.soft-section,
.cta-band,
.trust-rail-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(49, 215, 255, 0.10), transparent 28rem),
    linear-gradient(180deg, #061c33 0%, #031323 100%);
}

.section,
.soft-section {
  padding: 82px 0;
}

.trust-rail-section {
  padding: 34px 0 0;
}

.trust-rail,
.process-grid,
.service-grid,
.about-grid,
.leadership-grid {
  display: grid;
  gap: 22px;
}

.trust-rail {
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 4;
}

.process-grid,
.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

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

.trust-item,
.process-card,
.service-card,
.content-card,
.about-card,
.leadership-card,
.policy-card,
.form-card,
.framework-row {
  padding: 25px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--ta-card-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-item:hover,
.process-card:hover,
.service-card:hover,
.content-card:hover,
.about-card:hover,
.leadership-card:hover,
.ta-notice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 215, 255, 0.26);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.trust-item span,
.process-card span,
.card-label {
  color: var(--ta-gold-light);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.trust-item h3,
.process-card h3,
.service-card h3,
.content-card h3,
.about-card h3,
.leadership-card h3,
.framework-row h3 {
  margin: 10px 0 8px;
  color: #ffffff;
}

.trust-item p,
.process-card p,
.service-card p,
.content-card p,
.about-card p,
.leadership-card p,
.section-title p,
.framework-row p {
  color: var(--ta-soft-text);
  line-height: 1.65;
}

.section-head {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 36px;
}

.section-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-title p {
  margin: 16px 0 0;
  max-width: 1100px;
  font-size: 1rem;
}

.compact-grid {
  margin-top: 24px;
}

.service-card.accent {
  background:
    linear-gradient(180deg, rgba(49, 215, 255, 0.10), rgba(255, 255, 255, 0.055));
}

.number {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(49, 215, 255, 0.13);
  border: 1px solid rgba(49, 215, 255, 0.20);
  color: #8eeeff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-link {
  display: inline-flex;
  margin-top: 10px;
  color: #8eeeff;
  font-weight: 850;
}

/* ADVERTS */

.ta-notices-section {
  padding: 82px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 10%, rgba(49, 215, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #061c33, #031323);
  overflow: hidden;
}

.ta-notices-head {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.ta-notices-label {
  color: var(--ta-gold-light);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.ta-notices-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.ta-notices-head p,
.ta-notices-cta p {
  color: #e5f1ff;
  line-height: 1.7;
}

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

.ta-notice-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ta-notice-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, rgba(2, 8, 18, 0.98), rgba(6, 28, 51, 0.96));
}

.ta-notice-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(2, 8, 18, 0.98), rgba(6, 28, 51, 0.96));
}

.ta-notice-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(3, 19, 35, 0.90);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.ta-notice-body {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  padding: 24px 24px 26px;
  background:
    linear-gradient(180deg, rgba(3, 19, 35, 0.98), rgba(6, 28, 51, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ta-notice-body h3 {
  margin: 0 0 10px;
  color: #ffffff;
  line-height: 1.25;
}

.ta-notice-body p {
  margin: 0;
  color: #e7f2ff;
  line-height: 1.7;
}

.ta-notices-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(49, 215, 255, 0.13), rgba(216, 166, 58, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.ta-notices-cta h3 {
  margin: 0;
  color: #ffffff;
}

.ta-notices-cta p {
  margin: 8px 0 0;
}

/* ABOUT PAGE */

.about-profile {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(49, 215, 255, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(6, 28, 51, 0.94), rgba(3, 19, 35, 0.98));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--ta-card-shadow);
}

.about-profile h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.about-profile p {
  color: #e7f2ff;
  line-height: 1.75;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.detail-row {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.detail-row span {
  display: block;
  color: var(--ta-gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 6px;
}

.detail-row strong {
  color: #ffffff;
  font-size: 0.98rem;
}

/* SPLIT FEATURE */

.split-feature {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.feature-panel {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(49, 215, 255, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(6, 28, 51, 0.94), rgba(3, 19, 35, 0.98));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.feature-panel p {
  color: #e7f2ff;
  line-height: 1.75;
}

.framework-list {
  display: grid;
  gap: 16px;
}

/* CTA */

.cta-band {
  padding: 54px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(6, 28, 51, 0.98), rgba(7, 62, 145, 0.94)),
    radial-gradient(circle at top right, rgba(49, 215, 255, 0.18), transparent 18rem);
  color: #ffffff;
  box-shadow: var(--ta-shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  color: #ffffff;
}

.cta-inner p {
  max-width: 920px;
  color: #e7f2ff;
  line-height: 1.7;
}

/* FOOTER */

footer {
  padding: 66px 0 28px;
  color: #dce8f6;
  background:
    radial-gradient(circle at bottom right, rgba(49, 215, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #061c33, #031323);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1.42fr;
  gap: 54px;
  align-items: start;
}

.footer-brand .brand-name {
  color: #ffffff;
}

footer p {
  color: #d6e4f3;
  line-height: 1.7;
}

footer h4 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin: 0;
}

footer a {
  color: #edf6ff;
}

.footer-grid > div:nth-child(2) ul {
  display: grid;
  gap: 13px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: minmax(230px, 0.92fr) minmax(220px, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-service {
  color: var(--ta-gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  line-height: 1.35;
}

.contact-detail {
  justify-self: start;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.legal-line {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.legal-line p {
  font-size: 0.82rem;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #b8c8d9;
  font-size: 0.82rem;
}

/* FORMS */

input,
textarea,
select {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(49, 215, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(49, 215, 255, 0.10);
}

label {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 850;
}

button {
  font: inherit;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .executive-hero-wrap,
  .about-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .executive-hero-copy,
  .executive-command-panel {
    min-height: auto;
  }
}

@media (max-width: 1060px) {
  .tech-topbar-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .topbar-actions {
    justify-content: flex-start;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex !important;
  }

  .process-grid,
  .service-grid,
  .trust-rail,
  .ta-notices-grid,
  .footer-grid,
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ta-notices-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1560px);
  }

  .tech-topbar-inner {
    min-height: auto;
  }

  .topbar-left {
    align-items: flex-start;
  }

  .topbar-subtitle {
    white-space: normal;
    line-height: 1.45;
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .topbar-chip {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .nav-inner {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .executive-hero {
    padding: 36px 0 28px;
  }

  .executive-hero-wrap {
    padding: 24px;
    border-radius: 28px;
    gap: 28px;
  }

  .executive-hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3.3rem);
    line-height: 1;
  }

  .executive-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .executive-command-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .command-stage {
    grid-template-columns: 1fr;
  }

  .command-footer {
    display: grid;
  }

  .command-link {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .section,
  .soft-section,
  .ta-notices-section {
    padding: 58px 0;
  }

  .page-hero {
    padding: 56px 0;
  }

  .process-grid,
  .service-grid,
  .trust-rail,
  .ta-notices-grid,
  .footer-grid,
  .section-head,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .ta-notices-grid {
    gap: 22px;
  }

  .ta-notice-body {
    padding: 22px;
  }

  .ta-notices-cta,
  .cta-inner {
    display: grid;
  }

  .footer-contact li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 0;
  }

  .contact-detail {
    justify-self: start;
  }

  .copyright {
    display: grid;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}
