/* =========================================================
   InfoWider Technologies Pvt Ltd
   Global stylesheet
   Stack: HTML5 + CSS3 + Vanilla JavaScript
   ========================================================= */

/* =========================================================
   1. RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  overflow-x: hidden;

  font-family: "Inter", Arial, Helvetica, sans-serif;

  color: #0a1328;
  background: #ffffff;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

/* =========================================================
   2. DESIGN TOKENS
   ========================================================= */

:root {
  /* Brand Colors */

  --navy: #0a1328;
  --navy-2: #10254a;
  --navy-3: #16366a;

  --blue: #1e5bff;
  --blue-light: #36a3ff;
  --blue-soft: #eaf0ff;

  --red: #e53935;
  --red-soft: #fff0ef;

  /* Text Colors */

  --text: #0a1328;
  --text-soft: #334155;
  --muted: #64748b;
  --muted-light: #8a99ae;

  /* Surface Colors */

  --white: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef3fa;
  --surface-dark: #071020;

  /* Borders */

  --border: #dce3ed;
  --border-light: #e9eef5;

  /* Layout */

  --container: 1180px;
  --header-height: 82px;

  /* Radius */

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  /* Shadows */

  --shadow-sm: 0 8px 25px rgba(10, 19, 40, 0.06);

  --shadow-md: 0 20px 50px rgba(10, 19, 40, 0.09);

  --shadow-lg: 0 35px 90px rgba(10, 19, 40, 0.16);

  /* Transitions */

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
}

/* =========================================================
   3. GLOBAL LAYOUT
   ========================================================= */

.container {
  width: min(calc(100% - 40px), var(--container));

  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-top: 4px;
}

.eyebrow,
.hero-eyebrow {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;

  line-height: 1.2;

  letter-spacing: 3px;
}

.eyebrow::before,
.hero-eyebrow span {
  content: "";

  display: inline-block;

  width: 32px;
  height: 2px;

  flex: 0 0 auto;

  background: var(--blue);
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Inter", Arial, sans-serif;

  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero h1 span,
.section h2 span {
  color: var(--blue);
}

/* =========================================================
   4. HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  min-height: var(--header-height);

  background: rgba(255, 255, 255, 0.9);

  border-bottom: 1px solid rgba(220, 227, 237, 0.75);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);
}

.navbar {
  min-height: var(--header-height);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.logo {
  display: inline-flex;

  align-items: center;

  flex: 0 0 auto;
}

.logo img {
  width: 220px;
  height: auto;
}

.navigation {
  display: flex;

  align-items: center;

  gap: 34px;

  font-size: 14px;

  font-weight: 600;
}

.navigation > a:not(.nav-button) {
  position: relative;

  color: var(--text-soft);

  transition: color var(--transition-fast);
}

.navigation > a:not(.nav-button)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--blue);

  transition: width var(--transition-fast);
}

.navigation > a:not(.nav-button):hover {
  color: var(--blue);
}

.navigation > a:not(.nav-button):hover::after {
  width: 100%;
}

.nav-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  min-height: 44px;

  padding: 0 20px;

  border-radius: var(--radius-pill);

  background: var(--navy);

  color: var(--white);

  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.nav-button span {
  color: #69aaff;

  font-size: 16px;
}

.nav-button:hover {
  transform: translateY(-2px);

  background: var(--navy-2);

  box-shadow: 0 10px 25px rgba(10, 19, 40, 0.16);
}

.menu-button {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;

  border-radius: var(--radius-sm);

  background: var(--surface);

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 22px;
  height: 2px;

  margin: 5px auto;

  border-radius: 2px;

  background: var(--navy);

  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

/* =========================================================
   5. HERO
   ========================================================= */

.hero {
  position: relative;

  isolation: isolate;

  min-height: calc(100vh - var(--header-height));

  display: flex;

  align-items: center;

  overflow: hidden;

  background: linear-gradient(135deg, #ffffff 0%, #f8faff 54%, #eef4ff 100%);
}

.hero-background {
  position: absolute;

  inset: 0;

  z-index: -1;

  pointer-events: none;

  opacity: 0.55;

  background-image:
    linear-gradient(rgba(30, 91, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 91, 255, 0.045) 1px, transparent 1px);

  background-size: 72px 72px;

  mask-image: linear-gradient(90deg, black 0%, black 42%, transparent 88%);
}

.hero-container {
  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(400px, 0.95fr);

  gap: 70px;

  align-items: center;

  padding: 105px 0;
}

.hero-content {
  position: relative;

  z-index: 5;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-eyebrow span {
  width: 32px;
}

.hero h1 {
  max-width: 780px;

  font-weight: 800;

  letter-spacing: -5px;

  color: var(--navy);
}

.hero h1 span {
  display: block;
}

.hero-description {
  max-width: 610px;

  margin-top: 32px;

  color: var(--muted);

  font-size: 17px;

  line-height: 1.8;
}

.hero-buttons {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 36px;
}

/* =========================================================
   6. BUTTONS
   ========================================================= */

.button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  min-height: 52px;

  padding: 0 24px;

  border: 1px solid transparent;

  border-radius: var(--radius-pill);

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.button span {
  font-size: 16px;
}

.button-primary {
  background: var(--blue);

  color: var(--white);

  box-shadow: 0 14px 35px rgba(30, 91, 255, 0.22);
}

.button-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 42px rgba(30, 91, 255, 0.3);
}

.button-secondary {
  background: var(--white);

  border-color: var(--border);

  color: var(--navy);
}

.button-secondary:hover {
  transform: translateY(-3px);

  border-color: #aebbd0;

  box-shadow: var(--shadow-sm);
}

/* =========================================================
   7. HERO SERVICE SUMMARY
   ========================================================= */

.hero-services {
  display: flex;

  align-items: stretch;

  margin-top: 58px;
}

.hero-services > div {
  display: flex;

  align-items: center;

  gap: 12px;

  padding-right: 28px;

  margin-right: 28px;

  border-right: 1px solid var(--border);
}

.hero-services > div:last-child {
  padding-right: 0;

  margin-right: 0;

  border-right: 0;
}

.hero-services strong {
  color: var(--blue);

  font-family: "Manrope", sans-serif;

  font-size: 18px;

  font-weight: 800;
}

.hero-services span {
  color: var(--muted);

  font-size: 10px;

  font-weight: 700;

  line-height: 1.35;

  letter-spacing: 0.5px;
}

/* =========================================================
   8. HERO VISUAL
   ========================================================= */

.hero-visual {
  position: relative;

  min-height: 560px;

  display: grid;

  place-items: center;
}

.hero-orbit {
  position: absolute;

  border: 1px solid rgba(30, 91, 255, 0.12);

  border-radius: 50%;

  pointer-events: none;
}

.orbit-one {
  width: 500px;

  height: 300px;

  transform: rotate(-28deg);
}

.orbit-two {
  width: 350px;

  height: 520px;

  transform: rotate(45deg);
}

.hero-brand-card {
  position: relative;

  z-index: 4;

  width: min(430px, 90%);

  min-height: 400px;

  padding: 30px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 28px;

  background: linear-gradient(145deg, #081225 0%, #0d2042 60%, #102e5b 100%);

  color: var(--white);

  box-shadow: 0 40px 90px rgba(10, 19, 40, 0.3);

  transform: rotate(-3deg);

  transition: transform 0.5s ease;
}

.hero-brand-card::before {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  right: -100px;
  top: -100px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(54, 163, 255, 0.2), transparent 70%);
}

.hero-brand-card:hover {
  transform: rotate(0deg) translateY(-6px);
}

.brand-card-header {
  position: relative;

  z-index: 1;

  display: flex;

  align-items: center;

  gap: 9px;

  color: #8fa2bf;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.8px;
}

.status-dot {
  width: 7px;
  height: 7px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: #2ecc71;

  box-shadow: 0 0 0 5px rgba(46, 204, 113, 0.08);
}

.brand-card-logo {
  position: relative;

  z-index: 1;

  margin-top: 45px;

  padding: 18px;

  border-radius: 17px;

  background: var(--white);
}

.brand-card-logo img {
  width: 100%;
}

.brand-card-divider {
  height: 1px;

  margin: 30px 0;

  background: linear-gradient(90deg, var(--blue), rgba(30, 91, 255, 0));
}

.brand-card-services {
  position: relative;

  z-index: 1;

  display: grid;
}

.brand-card-services > div {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 13px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-card-services span {
  color: #4f98ff;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.brand-card-services b {
  color: #dbe5f5;

  font-size: 11px;

  font-weight: 600;
}

.brand-card-footer {
  position: relative;

  z-index: 1;

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 28px;

  color: #8295b1;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;
}

.brand-card-footer span:nth-child(2) {
  color: #4f98ff;
}

.brand-card-footer span:nth-child(3) {
  color: #e85b57;
}

/* =========================================================
   9. FLOATING HERO LABELS
   ========================================================= */

.floating-label {
  position: absolute;

  z-index: 7;

  padding: 10px 14px;

  border: 1px solid rgba(220, 227, 237, 0.9);

  border-radius: var(--radius-pill);

  background: rgba(255, 255, 255, 0.9);

  box-shadow: 0 16px 35px rgba(10, 19, 40, 0.1);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;

  white-space: nowrap;
}

.label-web {
  top: 13%;
  right: 3%;

  color: var(--blue);
}

.label-oracle {
  left: 2%;
  bottom: 22%;

  color: #d6423e;
}

.label-training {
  right: 10%;
  bottom: 6%;

  color: #1779b8;
}

.background-iw {
  position: absolute;

  right: -8%;
  bottom: -8%;

  z-index: 1;

  font-family: "Manrope", Arial, sans-serif;

  font-size: 15rem;

  font-weight: 800;

  line-height: 1;

  color: rgba(30, 91, 255, 0.035);

  user-select: none;

  pointer-events: none;
}

/* =========================================================
   10. SERVICES
   ========================================================= */

.services {
  background: var(--surface);
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;
}

.service-card {
  position: relative;

  min-height: 390px;

  display: flex;

  flex-direction: column;

  padding: 34px;

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  background: var(--white);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-7px);

  border-color: #c7d2e2;

  box-shadow: var(--shadow-md);
}

.service-number {
  color: var(--blue);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}

.service-icon {
  width: 58px;
  height: 58px;

  display: grid;

  place-items: center;

  margin: 48px 0 24px;

  border-radius: 17px;

  background: var(--blue-soft);

  color: var(--blue);

  font-family: monospace;

  font-size: 18px;

  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 13px;

  font-size: 1.45rem;
}

.service-card p {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.75;
}

.service-card a {
  margin-top: auto;

  padding-top: 30px;

  color: var(--blue);

  font-size: 13px;

  font-weight: 800;
}

.service-featured {
  border-color: var(--navy);

  background: linear-gradient(145deg, var(--navy), #102b55);

  color: var(--white);

  box-shadow: 0 25px 55px rgba(10, 19, 40, 0.14);
}

.service-featured:hover {
  border-color: var(--navy);

  box-shadow: 0 30px 65px rgba(10, 19, 40, 0.22);
}

.service-featured .service-number {
  color: #78adff;
}

.service-featured .service-icon {
  background: rgba(30, 91, 255, 0.18);

  color: #78adff;
}

.service-featured p {
  color: #aebbd0;
}

.service-featured a {
  color: #78adff;
}

/* =========================================================
   11. ORACLE SECTION
   ========================================================= */

.oracle {
  position: relative;

  overflow: hidden;

  color: var(--white);

  background: linear-gradient(120deg, #071020, #0a1831 55%, #123269);
}

.oracle::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -180px;
  top: -220px;

  border-radius: 50%;

  border: 1px solid rgba(80, 150, 255, 0.14);

  box-shadow:
    0 0 0 70px rgba(30, 91, 255, 0.025),
    0 0 0 140px rgba(30, 91, 255, 0.02);
}

.oracle-grid {
  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  gap: 90px;

  align-items: center;
}

.oracle-copy > p:not(.eyebrow) {
  max-width: 550px;

  margin: 28px 0 34px;

  color: #aebbd0;

  font-size: 17px;
}

.oracle-panels {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.oracle-panel {
  min-height: 175px;

  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.035);

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.oracle-panel:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.065);

  border-color: rgba(80, 140, 255, 0.35);
}

.oracle-panel > span {
  color: #5b9bff;

  font-size: 10px;

  font-weight: 800;
}

.oracle-panel strong {
  display: block;

  margin-top: 28px;

  font-family: "Manrope", sans-serif;

  font-size: 1.25rem;
}

.oracle-panel small {
  display: block;

  margin-top: 8px;

  color: #93a4bd;

  font-size: 12px;
}

/* =========================================================
   12. TRAINING
   ========================================================= */

.training {
  background: var(--white);
}

.training-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 100px;

  align-items: center;
}

.training-visual {
  min-height: 470px;

  display: grid;

  place-items: center;

  background: radial-gradient(
    circle at 40% 35%,
    rgba(30, 91, 255, 0.12),
    transparent 55%
  );
}

.training-window {
  width: min(450px, 90%);

  overflow: hidden;

  border-radius: var(--radius-lg);

  background: var(--navy);

  box-shadow: 0 35px 70px rgba(10, 19, 40, 0.2);

  transform: rotate(3deg);

  transition: transform var(--transition);
}

.training-window:hover {
  transform: rotate(0deg) translateY(-5px);
}

.window-top {
  height: 38px;

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 0 15px;

  background: #101d37;
}

.window-top span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #687890;
}

.window-body {
  min-height: 390px;

  padding: 42px;

  color: var(--white);
}

.course-tag {
  color: #6ea8ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}

.window-body h3 {
  margin: 45px 0;

  font-size: 3.2rem;

  line-height: 1;
}

.window-body h3 em {
  color: #6ea8ff;

  font-style: normal;
}

.progress {
  width: 100%;
  height: 4px;

  overflow: hidden;

  border-radius: var(--radius-pill);

  background: #263754;
}

.progress span {
  display: block;

  width: 72%;
  height: 100%;

  border-radius: inherit;

  background: var(--blue);
}

.window-body p {
  margin-top: 12px;

  color: #8ea0b9;

  font-size: 12px;
}

.training-copy > p:not(.eyebrow) {
  max-width: 540px;

  margin: 28px 0;

  color: var(--muted);

  font-size: 17px;
}

.check-list {
  display: grid;

  gap: 13px;

  margin: 28px 0 35px;
}

.check-list li {
  color: var(--text-soft);

  font-size: 14px;

  font-weight: 600;
}

.check-list li::before {
  content: "✓";

  margin-right: 12px;

  color: var(--blue);

  font-weight: 900;
}

/* =========================================================
   13. ABOUT
   ========================================================= */

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.75fr)
    minmax(0, 1.25fr);

  gap: 100px;
}

.about-title {
  align-self: start;
}

.large-copy {
  max-width: 760px;

  font-family: "Manrope", "Inter", sans-serif;

  font-size: 1.65rem;

  font-weight: 600;

  line-height: 1.45;
}

.principles {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

  margin-top: 55px;
}

.principles > div {
  padding-top: 18px;

  border-top: 1px solid var(--border);
}

.principles b {
  color: var(--blue);

  font-size: 11px;
}

.principles h3 {
  margin: 20px 0 8px;

  font-size: 1.1rem;
}

.principles p {
  color: var(--muted);

  font-size: 13px;
}

/* =========================================================
   14. CONTACT CTA
   ========================================================= */

.cta {
  padding-top: 70px;

  padding-bottom: 100px;
}

.cta-box {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  overflow: hidden;

  padding: 70px 75px;

  border-radius: var(--radius-xl);

  background: linear-gradient(120deg, #0a1328, #123269);

  color: var(--white);
}

.cta-box::after {
  content: "iw";

  position: absolute;

  right: 3%;
  bottom: -35%;

  font-family: "Manrope", sans-serif;

  font-size: 15rem;

  font-weight: 800;

  line-height: 1;

  color: rgba(255, 255, 255, 0.035);

  pointer-events: none;
}

.cta-box > * {
  position: relative;

  z-index: 1;
}

.cta-box .eyebrow {
  color: #79b4ff;
}

.cta-box .eyebrow::before {
  background: #79b4ff;
}

/* =========================================================
   15. FOOTER
   ========================================================= */

.footer {
  padding: 65px 0 25px;

  background: #071020;

  color: var(--white);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    0.8fr
    0.8fr;

  gap: 60px;

  padding-bottom: 45px;
}

.footer-logo {
  width: 260px;

  margin-bottom: 15px;

  filter: brightness(0) invert(1);

  opacity: 0.92;
}

.footer-grid > div > p {
  color: #8090a8;

  font-size: 13px;
}

.footer-links {
  display: grid;

  align-content: start;

  gap: 11px;

  font-size: 13px;
}

.footer-links a,
.footer-contact a {
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #6ea8ff;
}

.footer-contact {
  display: grid;

  align-content: start;

  gap: 10px;

  font-size: 13px;
}

.footer-contact span {
  color: #8090a8;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  color: #65748b;

  font-size: 11px;
}

/* =========================================================
   16. ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(30, 91, 255, 0.35);

  outline-offset: 4px;
}

/* =========================================================
   17. TABLET
   ========================================================= */

@media (max-width: 1100px) {
  :root {
    --container: 960px;
  }

  .hero-container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.85fr);

    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 5rem);
  }

  .hero-services > div {
    padding-right: 18px;

    margin-right: 18px;
  }

  .oracle-grid,
  .training-grid,
  .about-grid {
    gap: 60px;
  }

  .cta-box {
    padding: 60px;
  }
}

/* =========================================================
   18. SMALL LAPTOP / TABLET
   ========================================================= */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 30px;
  }

  .hero-eyebrow,
  .eyebrow {
    justify-content: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-services {
    justify-content: center;
  }

  .hero-visual {
    min-height: 480px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oracle-grid,
  .training-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .oracle-copy {
    text-align: center;
  }

  .oracle-copy .eyebrow {
    justify-content: center;
  }

  .oracle-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .oracle-copy .button {
    margin-inline: auto;
  }

  .training-copy {
    max-width: 760px;

    margin-inline: auto;
  }

  .about-title {
    text-align: center;
  }

  .about-title .eyebrow {
    justify-content: center;
  }

  .cta-box {
    align-items: flex-start;

    flex-direction: column;
  }
}

/* =========================================================
   19. MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .navbar {
    min-height: var(--header-height);
  }

  .logo img {
    width: 180px;
  }

  .menu-button {
    display: block;
  }

  .navigation {
    position: absolute;

    top: calc(var(--header-height) + 8px);

    left: 14px;
    right: 14px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 3px;

    padding: 12px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.98);

    box-shadow: 0 25px 60px rgba(10, 19, 40, 0.12);
  }

  .navigation.open {
    display: flex;
  }

  .navigation > a {
    padding: 13px 14px;
  }

  .navigation > a:not(.nav-button)::after {
    display: none;
  }

  .nav-button {
    justify-content: center;

    margin-top: 5px;
  }

  /* Hero */

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 70px 0;
  }

  .hero-background {
    opacity: 0.25;

    background-size: 55px 55px;

    mask-image: none;
  }

  .hero-eyebrow {
    font-size: 9px;

    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);

    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 15px;

    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;
  }

  .hero-buttons .button {
    width: 100%;
  }

  /* Hero Services */

  .hero-services {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    width: 100%;

    margin-top: 45px;
  }

  .hero-services > div {
    display: block;

    padding: 0 8px;

    margin: 0;

    border-right: 1px solid var(--border);
  }

  .hero-services > div:last-child {
    border-right: 0;
  }

  .hero-services strong {
    display: block;

    margin-bottom: 5px;
  }

  .hero-services span {
    font-size: 8px;
  }

  /* Hero Visual */

  .hero-visual {
    min-height: 390px;

    margin-top: 20px;
  }

  .hero-brand-card {
    width: 92%;

    min-height: 350px;

    padding: 23px;

    transform: none;
  }

  .hero-brand-card:hover {
    transform: none;
  }

  .brand-card-logo {
    margin-top: 35px;

    padding: 13px;
  }

  .hero-orbit {
    opacity: 0.6;
  }

  .orbit-one {
    width: 340px;
    height: 210px;
  }

  .orbit-two {
    width: 250px;
    height: 350px;
  }

  .floating-label {
    padding: 8px 10px;

    font-size: 7px;
  }

  .label-web {
    top: 5%;
    right: 0;
  }

  .label-oracle {
    left: 0;
    bottom: 18%;
  }

  .label-training {
    right: 4%;
    bottom: 2%;
  }

  .background-iw {
    right: -4%;

    font-size: 9rem;
  }

  /* Services */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .service-icon {
    margin-top: 35px;
  }

  /* Oracle */

  .oracle-panels {
    grid-template-columns: 1fr;
  }

  .oracle-panel {
    min-height: 150px;
  }

  /* Training */

  .training-visual {
    min-height: 390px;
  }

  .training-window {
    transform: none;
  }

  .training-window:hover {
    transform: none;
  }

  .window-body {
    min-height: 330px;

    padding: 32px;
  }

  .window-body h3 {
    margin: 35px 0;

    font-size: 2.7rem;
  }

  /* About */

  .principles {
    grid-template-columns: 1fr;

    margin-top: 40px;
  }

  .principles > div {
    padding-bottom: 5px;
  }

  /* CTA */

  .cta {
    padding-top: 30px;

    padding-bottom: 80px;
  }

  .cta-box {
    padding: 45px 28px;

    border-radius: 24px;
  }

  /* Footer */

  .footer {
    padding-top: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-logo {
    width: 230px;
  }

  .footer-bottom {
    display: grid;

    gap: 8px;
  }
}

/* =========================================================
   20. SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {
  .logo img {
    width: 165px;
  }

  .hero h1 {
    font-size: 2.6rem;

    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-services span {
    font-size: 7px;
  }

  .hero-brand-card {
    min-height: 320px;
  }

  .brand-card-services b {
    font-size: 9px;
  }

  .brand-card-footer {
    gap: 7px;

    font-size: 8px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .service-card {
    padding: 28px;
  }

  .oracle-panel {
    padding: 23px;
  }

  .window-body {
    padding: 28px;
  }

  .window-body h3 {
    font-size: 2.4rem;
  }

  .cta-box {
    padding: 38px 22px;
  }

  .cta-box::after {
    font-size: 9rem;
  }
}

/* =========================================================
   21. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;
  }

  .hero-brand-card,
  .training-window,
  .service-card,
  .button,
  .nav-button {
    transform: none !important;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 70px 0 25px;

  background: #071020;

  color: #ffffff;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr
    0.7fr
    1fr;

  gap: 70px;

  padding-bottom: 50px;
}

.footer-company {
  max-width: 420px;
}

.footer-logo {
  width: 260px;

  margin-bottom: 18px;

  filter: brightness(0) invert(1);

  opacity: 0.92;
}

.footer-company > p {
  max-width: 390px;

  color: #8090a8;

  font-size: 13px;

  line-height: 1.8;
}

/* Footer headings */

.footer h4 {
  margin-bottom: 20px;

  color: #ffffff;

  font-family: "Manrope", "Inter", sans-serif;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: -0.01em;
}

/* Quick Links */

.footer-links {
  display: grid;

  align-content: start;

  gap: 12px;

  font-size: 13px;
}

.footer-links a {
  width: fit-content;

  color: #aebbd0;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover {
  color: #6ea8ff;

  transform: translateX(3px);
}

/* Contact */

.footer-address {
  margin-bottom: 20px;
}

.footer-address strong {
  display: block;

  margin-bottom: 8px;

  color: #dbe5f5;

  font-size: 13px;

  font-weight: 700;
}

.footer-address p {
  color: #8090a8;

  font-size: 13px;

  line-height: 1.8;
}

.footer-contact > a {
  display: block;

  width: fit-content;

  margin-top: 9px;

  color: #aebbd0;

  font-size: 13px;

  transition: color 0.2s ease;
}

.footer-contact > a:hover {
  color: #6ea8ff;
}

/* Bottom */

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  color: #65748b;

  font-size: 11px;
}

/* Mobile */

@media (max-width: 760px) {
  .footer {
    padding-top: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .footer-logo {
    width: 230px;
  }

  .footer-bottom {
    display: grid;

    gap: 8px;
  }
}
