:root {
  --up-blue: #005080;
  --up-blue-dark: #003f5a;
  --up-blue-deep: #002f45;
  --up-orange: #ff4000;
  --up-orange-bright: #ff5a18;
  --up-orange-soft: #fff2ec;
  --up-blue-soft: #edf8fc;
  --white: #ffffff;
  --off-white: #f7fafc;
  --text-dark: #10212b;
  --text-muted: #5f6f78;
  --line: rgba(0, 80, 128, 0.14);
  --shadow: 0 20px 50px rgba(0, 47, 69, 0.11);
  --shadow-soft: 0 12px 28px rgba(0, 47, 69, 0.08);
  --radius: 8px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", Inter, Manrope, system-ui, sans-serif;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 64, 0, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--up-blue-deep);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 80px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 80, 128, 0.1);
  box-shadow: 0 10px 30px rgba(0, 47, 69, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(150px, 12vw, 190px);
}

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

.nav-link {
  position: relative;
  color: rgba(16, 33, 43, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--up-orange);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--up-blue-deep);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-contact {
  font-size: 14px;
  font-weight: 800;
  color: var(--up-blue);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
  transition: transform 180ms ease;
}

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

.btn:hover svg {
  transform: translate(3px, -1px);
}

.btn-primary {
  background: var(--up-orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 64, 0, 0.22);
}

.btn-primary:hover {
  background: #e83a00;
  box-shadow: 0 16px 34px rgba(255, 64, 0, 0.28);
}

.btn-secondary {
  color: var(--up-blue-deep);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 80, 128, 0.24);
}

.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 80, 128, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--up-blue-deep);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.page-section {
  position: relative;
  padding: 108px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 142px 0 72px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 64, 0, 0.1), transparent 27%),
    radial-gradient(circle at 10% 20%, rgba(0, 80, 128, 0.12), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f7fbfd 48%, #fff7f2 100%);
}

.section-pattern::before,
.section-tint::before,
.edge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(0, 80, 128, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 80, 128, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--up-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 span {
  color: var(--up-orange);
}

.hero-lede {
  max-width: 650px;
  color: var(--text-muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  inset: 58px 18px 48px 42px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 80, 128, 0.18);
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.growth-path {
  position: absolute;
  inset: 18px 20px 0 20px;
  border: 2px solid rgba(255, 64, 0, 0.22);
  border-left: 0;
  border-bottom: 0;
  transform: skew(-9deg);
}

.growth-path::after {
  content: "";
  position: absolute;
  right: 0;
  top: -9px;
  width: 22px;
  height: 22px;
  border-top: 4px solid var(--up-orange);
  border-right: 4px solid var(--up-orange);
}

.float-card,
.mini-course {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

.float-card {
  flex-direction: column;
  align-items: flex-start;
  min-width: 168px;
  padding: 18px;
}

.float-card strong {
  color: var(--up-blue);
  font-size: 34px;
  line-height: 1;
}

.float-card span,
.mini-course span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.float-card-one {
  top: 6px;
  left: 0;
}

.float-card-two {
  right: 0;
  bottom: 6px;
}

.mini-course {
  left: 8px;
  bottom: 86px;
  padding: 14px 16px;
}

.mini-course svg {
  width: 34px;
  height: 34px;
  color: var(--up-orange);
}

.mini-course small {
  display: block;
  color: var(--text-muted);
}

.impact {
  position: relative;
  margin-top: -28px;
  z-index: 4;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 80, 128, 0.12);
  box-shadow: var(--shadow-soft);
  background: rgba(0, 80, 128, 0.12);
}

.stat {
  min-height: 154px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.stat strong {
  display: block;
  color: var(--up-blue-deep);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  margin-bottom: 12px;
}

.stat span {
  color: var(--text-muted);
  font-weight: 800;
}

.about-grid,
.smart-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.smart-content h2,
.cta-shell h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p:not(.eyebrow),
.cta-shell p {
  color: var(--text-muted);
  font-size: 17px;
}

.about-panels {
  display: grid;
  gap: 18px;
}

.mission-card,
.verticals-card,
.solution-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mission-card {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 47, 69, 0.96), rgba(0, 80, 128, 0.92)),
    var(--up-blue-deep);
}

.mission-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 120px;
  height: 70px;
  border-right: 2px solid rgba(255, 64, 0, 0.65);
  border-top: 2px solid rgba(255, 64, 0, 0.65);
  transform: skew(-10deg);
}

.quote-mark {
  position: absolute;
  top: -18px;
  right: 26px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 118px;
  line-height: 1;
  font-weight: 800;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.mission-card h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.22;
}

.verticals-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 64, 0, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff, #f8fcfd);
}

.verticals-card h3 {
  margin-bottom: 20px;
  color: var(--up-blue-deep);
  font-size: 22px;
}

.vertical-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vertical-list span,
.chip-cloud span,
.marquee span {
  border: 1px solid rgba(0, 80, 128, 0.16);
  border-radius: 999px;
  background: rgba(237, 248, 252, 0.74);
  color: var(--up-blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.vertical-list span {
  padding: 10px 12px;
}

.section-tint {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 80, 128, 0.09), transparent 28%),
    linear-gradient(180deg, #f8fcfd, #ffffff 70%);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.solution-grid,
.benefit-grid,
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-card {
  min-height: 360px;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card::before,
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--up-orange), rgba(255, 64, 0, 0));
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 180ms ease;
}

.solution-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 64, 0, 0.24);
  box-shadow: var(--shadow);
}

.solution-card:hover::before,
.benefit-card:hover::before {
  transform: scaleX(1);
}

.solution-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 42px;
}

.solution-top span {
  color: rgba(0, 80, 128, 0.22);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.solution-top svg,
.benefit-card svg,
.edge-card svg {
  width: 42px;
  height: 42px;
  color: var(--up-orange);
  stroke-width: 1.8;
}

.solution-card h3,
.benefit-card h3,
.edge-card h3 {
  margin-bottom: 12px;
  color: var(--up-blue-deep);
  font-size: 24px;
}

.solution-card p,
.benefit-card p,
.edge-card p,
.smart-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.solution-card a {
  position: absolute;
  left: 30px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--up-orange);
  font-weight: 800;
}

.solution-card a svg {
  width: 17px;
  height: 17px;
}

.domain-band {
  padding: 54px 0;
  overflow: hidden;
  background: var(--up-blue-deep);
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding-inline: clamp(36px, 4vw, 56px);
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  animation: marquee 40s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
}

.marquee span {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.marquee span:nth-child(4n) {
  border-color: rgba(255, 64, 0, 0.5);
  color: #ffd7c7;
}

.chip-cloud {
  display: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.learning-benefits {
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 64, 0, 0.09), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(0, 80, 128, 0.11), transparent 27%),
    #ffffff;
}

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

.benefit-card {
  padding: 28px;
}

.benefit-card svg {
  margin-bottom: 28px;
}

.smart {
  background: linear-gradient(180deg, #ffffff, #f8fcfd);
}

.smart-grid {
  grid-template-columns: minmax(310px, 0.42fr) minmax(0, 0.58fr);
}

.smart-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 80, 128, 0.18);
  box-shadow: var(--shadow);
  aspect-ratio: 0.82;
}

.smart-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-tag {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 47, 69, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
}

.program-tag span {
  display: block;
  color: #ffd7c7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-tag strong {
  font-size: 22px;
  line-height: 1.2;
}

.smart-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.smart-item {
  position: relative;
  padding: 18px 18px 18px 20px;
  border-top: 1px solid rgba(0, 80, 128, 0.16);
}

.smart-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--up-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 180ms ease;
}

.smart-item:hover::before {
  transform: scaleY(1);
}

.smart-item span {
  color: var(--up-orange);
  font-size: 12px;
  font-weight: 800;
}

.smart-item h3 {
  margin: 8px 0 8px;
  color: var(--up-blue);
  font-size: 17px;
}

.smart-item p {
  font-size: 14px;
}

.edge {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 64, 0, 0.18), transparent 26%),
    linear-gradient(135deg, #002f45 0%, #003f5a 52%, #00283a 100%);
  isolation: isolate;
}

.edge::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
}

.section-heading.light h2 {
  color: var(--white);
}

.edge-grid {
  grid-template-columns: repeat(5, 1fr);
}

.edge-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.edge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 64, 0, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.edge-card h3 {
  color: var(--white);
  font-size: 19px;
}

.edge-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.journey {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 64, 0, 0.08), transparent 24%),
    #ffffff;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
  padding-inline: 32px;
}

.timeline-line {
  position: absolute;
  left: 32px;
  right: 32px;
  top: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--up-blue), var(--up-orange));
  z-index: 0;
}

.timeline article {
  position: relative;
  z-index: 1;
  padding-top: 54px;
}

.timeline article::before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--up-orange);
  box-shadow: 0 0 0 6px rgba(255, 64, 0, 0.1);
  z-index: 2;
}

.timeline strong {
  display: block;
  color: var(--up-blue-deep);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.timeline span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.final-cta {
  padding: 98px 0;
  background: linear-gradient(135deg, var(--up-blue-deep), #004b6b);
}

.cta-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 52px;
  border-radius: var(--radius);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 64, 0, 0.34), transparent 26%),
    rgba(255, 255, 255, 0.06);
}

.cta-mark {
  position: absolute;
  right: 26px;
  bottom: -54px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 190px;
  font-weight: 800;
  line-height: 1;
}

.cta-shell h2 {
  max-width: 760px;
}

.cta-shell p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.cta-actions {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
}

/* Contact Section */
.contact {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 80, 128, 0.1), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(255, 64, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  scroll-margin-top: 96px;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(0, 80, 128, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 80, 128, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 55% 45%, black, transparent 72%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 118px;
}

.contact-intro h2 {
  margin-bottom: 18px;
  color: var(--up-blue-deep);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-intro > p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

a.contact-info-item {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.contact-info-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 64, 0, 0.24);
  box-shadow: var(--shadow);
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--up-orange);
  background: var(--up-orange-soft);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.contact-info-item strong,
.contact-info-item em {
  display: block;
  font-style: normal;
}

.contact-info-item strong {
  margin-bottom: 4px;
  color: var(--up-blue-deep);
  font-size: 15px;
}

.contact-info-item em {
  color: var(--text-muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* Contact Form */
.contact-form-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--up-orange), rgba(255, 64, 0, 0));
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full,
.contact-submit {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--up-blue-deep);
  font-size: 14px;
  font-weight: 800;
}

.form-field label span,
.field-error {
  color: var(--up-orange);
}

.form-field input,
.form-field select,
.form-field textarea, .form-field custom-select {
  width: 100%;
  border: 1px solid rgba(0, 80, 128, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
  font-weight: 600;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select, .form-field custom-select {
  min-height: 54px;
  padding: 0 16px;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--up-blue) 50%),
    linear-gradient(135deg, var(--up-blue) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 14px) 23px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(0, 80, 128, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.custom-select-trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-trigger svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--up-blue-deep);
  stroke-width: 2.2;
  transition: transform 200ms ease;
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  outline: none;
  border-color: rgba(255, 64, 0, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 64, 0, 0.12);
  background: #fffefe;
}

.custom-select.is-open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(0, 80, 128, 0.16);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.custom-select.is-open .custom-select-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  border: 0;
  border-radius: 9px;
  background: #ffffff;
  color: var(--up-blue-deep);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.custom-select-option span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.custom-select-option svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: currentColor;
  opacity: 0;
  stroke-width: 2.4;
}

.custom-select-option:hover,
.custom-select-option.is-highlighted {
  background: rgba(255, 64, 0, 0.08);
  color: var(--up-blue-deep);
}

.custom-select-option.is-selected {
  background: var(--up-orange);
  color: var(--white);
}

.custom-select-option.is-selected svg {
  opacity: 1;
}

.form-field textarea {
  min-height: 148px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 64, 0, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 64, 0, 0.12);
  background: #fffefe;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(255, 64, 0, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 64, 0, 0.1);
}

.field-error {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.contact-submit {
  justify-self: start;
  min-width: 176px;
  margin-top: 4px;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  transform: none;
  opacity: 0.86;
}

.contact-submit.is-loading svg {
  animation: contact-spin 700ms linear infinite;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success Modal */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 47, 69, 0.56);
  backdrop-filter: blur(10px);
}

.success-modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 38px;
  border: 1px solid rgba(0, 80, 128, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 64, 0, 0.1), transparent 32%),
    var(--white);
  box-shadow: 0 28px 80px rgba(0, 47, 69, 0.28);
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.success-modal.is-open .success-modal-card {
  transform: translateY(0) scale(1);
}

.success-modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 80, 128, 0.14);
  border-radius: 12px;
  color: var(--up-blue-deep);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.success-modal-x svg {
  width: 18px;
  height: 18px;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--up-orange), var(--up-orange-bright));
  box-shadow: 0 16px 32px rgba(255, 64, 0, 0.24);
}

.success-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.6;
}

.success-modal-card h2 {
  margin-bottom: 10px;
  color: var(--up-blue-deep);
  font-size: 34px;
  line-height: 1.1;
}

.success-modal-card p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.success-modal-card small {
  display: block;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 24px;
}

.site-footer {
  padding: 70px 0 28px;
  background: #f8fcfd;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 0.6fr 0.7fr;
  gap: 50px;
}

.footer-grid img {
  width: 210px;
  margin-bottom: 20px;
}

.footer-grid p {
  max-width: 430px;
  color: var(--text-muted);
}

.footer-grid h3 {
  color: var(--up-blue-deep);
  font-size: 15px;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid nav a {
  color: var(--text-muted);
  font-weight: 700;
}

.footer-grid nav a:hover {
  color: var(--up-orange);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 80, 128, 0.12);
  color: var(--text-muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .nav-shell {
    justify-content: space-between;
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 78px 20px auto;
    padding: 18px;
    border: 1px solid rgba(0, 80, 128, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
    gap: 6px;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
    color: var(--up-blue-deep);
    font-weight: 800;
  }

  .mobile-menu .btn {
    color: var(--white);
    justify-content: center;
    margin-top: 6px;
  }

  .hero-grid,
  .about-grid,
  .smart-grid {
    grid-template-columns: 1fr;
  }

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

  .edge-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
    padding-inline: 0;
  }

  .timeline-line {
    display: none;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 40px, var(--max));
  }

  .page-section {
    padding: 82px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-grid {
    gap: 38px;
  }

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

  .impact-grid,
  .solution-grid,
  .smart-list,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .impact {
    margin-top: 0;
  }

  .stat {
    min-height: 126px;
  }

  .vertical-list,
  .benefit-grid,
  .edge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marquee {
    display: none;
  }

  .chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .chip-cloud span {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .cta-shell {
    grid-template-columns: 1fr;
    padding: 36px;
  }

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

@media (max-width: 560px) {
  html {
    scroll-padding-top: 78px;
  }

  .contact {
    scroll-margin-top: 78px;
  }

  .container {
    width: min(100% - 36px, var(--max));
  }

  .brand img {
    width: 156px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-photo {
    inset: 44px 0 42px 14px;
  }

  .float-card {
    min-width: 136px;
    padding: 14px;
  }

  .float-card strong {
    font-size: 28px;
  }

  .float-card-two {
    right: 0;
    bottom: 4px;
  }

  .mini-course {
    left: 0;
    right: 20px;
    bottom: 74px;
  }

  .solution-grid,
  .benefit-grid,
  .edge-grid,
  .vertical-list,
  .contact-form,
  .timeline {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
  }

  .contact-submit {
    width: 100%;
  }

  .success-modal {
    padding: 18px;
  }

  .success-modal-card {
    padding: 34px 22px 26px;
    border-radius: 20px;
  }

  .timeline {
    gap: 24px;
    padding-left: 24px;
  }

  .timeline-line {
    display: block;
    left: 8px;
    right: auto;
    top: 2px;
    bottom: 2px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--up-blue), var(--up-orange));
  }

  .smart-media {
    aspect-ratio: 0.9;
  }

  .timeline article {
    padding: 0 0 0 42px;
  }

  .timeline article::before {
    top: 2px;
    left: -24px;
  }

  .cta-mark {
    font-size: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    display: none;
  }

  .chip-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .chip-cloud span {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
