:root {
  --navy: #061a33;
  --navy-2: #0b2444;
  --blue: #123d69;
  --orange: #f05a1a;
  --orange-dark: #d9480f;
  --text: #172033;
  --muted: #667085;
  --line: #e6eaf0;
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 26, 51, 0.12);
  --radius: 28px;
  --radius-small: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.section-pad.compact {
  padding: 40px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 234, 240, 0.78);
}

.navbar {
  width: min(1240px, calc(100% - 34px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 235px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: #f2f5f9;
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--navy);
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  background: var(--orange);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
  border-radius: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(240, 90, 26, 0.12), transparent 30%),
    radial-gradient(circle at 78% 10%, rgba(18, 61, 105, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 360px;
  background: linear-gradient(90deg, rgba(240, 90, 26, 0.12), rgba(6, 26, 51, 0.06));
  transform: skewY(-4deg);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy);
  line-height: 1.2;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 34px rgba(240, 90, 26, 0.26);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6, 26, 51, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-card {
  border: 1px solid rgba(230, 234, 240, 0.9);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 18px;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(240, 90, 26, 0.14);
  animation: dashboardDotBlink 1.4s ease-in-out infinite;
}

@keyframes dashboardDotBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(240, 90, 26, 0.14);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.78);
    box-shadow: 0 0 0 12px rgba(240, 90, 26, 0.04);
  }
}

.metric-card {
  position: relative;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-top: 14px;
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  top: -24px;
  right: -22px;
  border-radius: 50%;
  background: rgba(240, 90, 26, 0.12);
}

.metric-card p {
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.85rem;
}

.metric-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.metric-card span {
  color: var(--muted);
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.intro-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

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

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(6, 26, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 18px;
  font-size: 1.45rem;
  margin-bottom: 20px;
}

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

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.service-card li {
  margin: 7px 0;
}

.split-section,
.support-section,
.faq-section {
  background: var(--bg);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.split-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-list span {
  color: var(--muted);
}

.visual-panel {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(240, 90, 26, 0.18), transparent 28%),
    linear-gradient(135deg, #061a33, #123d69);
  box-shadow: var(--shadow);
}

.cloud-node {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-weight: 900;
}

.main-node {
  width: 150px;
  height: 150px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(240, 90, 26, 0.9);
  font-size: 1.4rem;
}

.node-a,
.node-b,
.node-c {
  width: 106px;
  height: 106px;
}

.node-a {
  left: 14%;
  top: 18%;
}

.node-b {
  right: 12%;
  top: 22%;
}

.node-c {
  left: 20%;
  bottom: 15%;
}

.cloud-line {
  position: absolute;
  height: 2px;
  width: 150px;
  background: rgba(255, 255, 255, 0.28);
  transform-origin: left center;
}

.line-a {
  left: 34%;
  top: 41%;
  transform: rotate(25deg);
}

.line-b {
  left: 53%;
  top: 43%;
  transform: rotate(-23deg);
}

.line-c {
  left: 36%;
  bottom: 34%;
  transform: rotate(-27deg);
}

.network-panel {
  background:
    radial-gradient(circle at 70% 20%, rgba(240, 90, 26, 0.22), transparent 30%),
    linear-gradient(135deg, #0b2444, #061a33);
}

.network-map {
  position: absolute;
  inset: 44px;
}

.network-dot {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 7px solid var(--white);
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.dot-1 {
  left: 8%;
  top: 18%;
}

.dot-2 {
  right: 12%;
  top: 18%;
}

.dot-3 {
  left: 44%;
  top: 45%;
  background: #ffffff;
  border-color: var(--orange);
}

.dot-4 {
  left: 16%;
  bottom: 14%;
}

.dot-5 {
  right: 16%;
  bottom: 16%;
}

.network-line {
  position: absolute;
  height: 3px;
  background: rgba(255, 255, 255, 0.34);
  transform-origin: left center;
}

.nl-1 {
  left: 13%;
  top: 25%;
  width: 290px;
  transform: rotate(12deg);
}

.nl-2 {
  right: 17%;
  top: 25%;
  width: 205px;
  transform: rotate(156deg);
}

.nl-3 {
  left: 22%;
  bottom: 24%;
  width: 210px;
  transform: rotate(-26deg);
}

.nl-4 {
  right: 22%;
  bottom: 25%;
  width: 210px;
  transform: rotate(207deg);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.support-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.support-item span {
  display: inline-flex;
  color: var(--orange);
  font-weight: 950;
  margin-bottom: 28px;
}

.support-item p {
  color: var(--muted);
}

.process-section {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-step {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-small);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(6, 26, 51, 0.06);
}

.timeline-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 950;
  margin-bottom: 18px;
}

.timeline-step p {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 52px;
}

.faq-grid p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(240, 90, 26, 0.12), transparent 28%),
    #ffffff;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  color: var(--navy);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fbfcfe;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 90, 26, 0.12);
}

.form-note {
  color: var(--muted) !important;
  font-size: 0.88rem;
  margin: 0;
}

.site-footer {
  padding: 54px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: #041224;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid img {
  width: 235px;
  background: white;
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 16px;
}

.footer-grid h3 {
  color: var(--white);
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

@media (max-width: 1020px) {
  .hero-grid,
  .split-grid,
  .contact-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 820px) {
  .navbar {
    min-height: 76px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 205px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 17px;
    right: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .section-pad {
    padding: 72px 0;
  }

  .intro-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .cards-grid,
  .support-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.3rem, 14vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-card,
  .intro-strip {
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


.pricing-disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  color: var(--navy);
  background: #fff7f2;
  border: 1px solid rgba(240, 90, 26, 0.22);
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  font-size: 0.98rem;
}

.pricing-note-contact {
  margin-top: 18px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  font-weight: 700;
}








  35% {
    transform: translateY(-10px);
    box-shadow: 0 24px 44px rgba(240, 90, 26, 0.36);
  }

  55% {
    transform: translateY(0);
    box-shadow: 0 14px 30px rgba(240, 90, 26, 0.24);
  }

  72% {
    transform: translateY(-5px);
    box-shadow: 0 20px 38px rgba(240, 90, 26, 0.3);
  }
}


  50% {
    opacity: 0.58;
  }
}


  50% {
    box-shadow: 0 18px 42px rgba(240, 90, 26, 0.38), 0 0 0 8px rgba(240, 90, 26, 0.08);
    transform: translateY(-2px);
  }
}


  50% {
    transform: translateY(-50%) translateX(5px);
  }
}


  35%, 100% {
    transform: translateX(120%);
  }
}


  45% {
    transform: translateY(0) scale(0.96);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}










/* Customer portal and mobile enhancements */
.portal-main {
  min-height: 62vh;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.portal-section {
  padding: 72px 0 96px;
}

.portal-hero-small,
.portal-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.portal-hero-small {
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(240, 90, 26, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portal-hero-small h1,
.portal-hero-small p,
.portal-hero-small .eyebrow {
  color: var(--white);
}

.portal-hero-small p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.portal-page-heading h1,
.auth-copy h1 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.portal-page-heading p,
.auth-copy p {
  color: var(--muted);
  max-width: 720px;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 46px;
  align-items: start;
}

.ticket-form-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(380px, 1.25fr);
}

.auth-copy {
  position: sticky;
  top: 110px;
}

.portal-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.portal-form.compact-form {
  padding: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  margin-top: 16px;
}

.portal-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 850;
}

.portal-form input,
.portal-form select,
.portal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fbfcfe;
  outline: none;
}

.portal-form textarea {
  resize: vertical;
}

.portal-form input:focus,
.portal-form select:focus,
.portal-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 90, 26, 0.12);
}

.optional {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.auth-switch,
.auth-switch a {
  color: var(--muted);
}

.auth-switch a {
  color: var(--orange);
  font-weight: 850;
}

.portal-mini-card {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 26, 51, 0.08);
}

.portal-mini-card strong {
  color: var(--navy);
}

.portal-mini-card span {
  color: var(--muted);
}

.portal-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.portal-stat,
.portal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(6, 26, 51, 0.06);
}

.portal-stat {
  padding: 24px;
}

.portal-stat span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 6px;
}

.portal-stat strong {
  color: var(--navy);
  font-size: 2.4rem;
  line-height: 1;
}

.portal-card {
  padding: 26px;
  margin-top: 22px;
}

.portal-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.portal-card-heading h2,
.portal-card h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 0;
}

.portal-card-heading a,
.responsive-table a {
  color: var(--orange);
  font-weight: 900;
}

.responsive-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--text);
}

td small {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  color: var(--navy);
  background: #fff7f2;
  border: 1px solid rgba(240, 90, 26, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.empty-state {
  margin: 0;
  padding: 22px;
  color: var(--muted);
  background: #f8fbff;
  border: 1px dashed var(--line);
  border-radius: 18px;
}

.flash {
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: 800;
}

.flash-success {
  color: #075e36;
  background: #eafaf1;
  border: 1px solid #b8efcf;
}

.flash-error {
  color: #842029;
  background: #fff0f0;
  border: 1px solid #f3c3c7;
}

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: start;
}

.ticket-side-card {
  position: sticky;
  top: 110px;
}

.message-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.ticket-message {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fbfcfe;
}

.support-message {
  background: #f3f8ff;
  border-color: rgba(18, 61, 105, 0.18);
}

.customer-message {
  background: #fffaf7;
  border-color: rgba(240, 90, 26, 0.18);
}

.message-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.message-meta strong {
  color: var(--navy);
}

.message-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.ticket-message p {
  margin-bottom: 0;
  color: var(--text);
}

.contact-actions-stack {
  display: grid;
  gap: 18px;
}

.portal-callout {
  padding: 22px;
  color: var(--navy);
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--line);
}

.portal-callout h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.portal-callout p {
  color: var(--muted);
}

.portal-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.portal-callout .btn-secondary {
  background: #f8fbff;
  box-shadow: none;
}

.portal-footer {
  margin-top: 0;
}

@media (max-width: 1020px) {
  .auth-grid,
  .ticket-form-grid,
  .ticket-layout {
    grid-template-columns: 1fr;
  }

  .auth-copy,
  .ticket-side-card {
    position: static;
  }

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

@media (max-width: 760px) {
  .portal-section {
    padding: 48px 0 68px;
  }

  .portal-hero-small,
  .portal-page-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .portal-hero-small,
  .portal-card,
  .portal-form,
  .portal-callout {
    padding: 22px;
  }

  .portal-stat-grid {
    grid-template-columns: 1fr;
  }

  .portal-page-heading .btn,
  .portal-hero-small .btn,
  .portal-callout-actions .btn {
    width: 100%;
  }

  .message-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  table {
    min-width: 680px;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 178px;
  }

  .navbar {
    width: min(100% - 22px, 1240px);
  }

  .portal-page-heading h1,
  .auth-copy h1 {
    font-size: 2.25rem;
  }

  .portal-form input,
  .portal-form select,
  .portal-form textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}


.hero-content {
  overflow: hidden;
}





/* About page */
.about-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(240, 90, 26, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 42px;
  align-items: center;
}

.about-photo-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-photo-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.about-copy .about-lead {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 600;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.about-stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 26, 51, 0.05);
}

.about-stat strong {
  display: block;
  color: var(--orange);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.about-stat span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.about-story-section {
  background: var(--bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about-story-grid p {
  color: var(--muted);
}

.about-skills-card,
.values-card,
.cert-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(6, 26, 51, 0.06);
}

.about-skills-card {
  padding: 28px;
}

.skills-list {
  margin: 20px 0 0;
  padding-left: 18px;
}

.skills-list li {
  margin: 10px 0;
  color: var(--text);
}

.cert-section {
  background: #ffffff;
}

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

.cert-card {
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.cert-logo {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 5px;
  border-radius: 14px;
  background: #f6f8fb;
  border: 1px solid var(--line);
}

.ms-square {
  display: block;
  border-radius: 3px;
}

.sq-red { background: #f25022; }
.sq-green { background: #7fba00; }
.sq-blue { background: #00a4ef; }
.sq-yellow { background: #ffb900; }

.cert-content h3 {
  margin-bottom: 6px;
}

.cert-subtitle {
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 10px;
}

.cert-content p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.values-section {
  background: var(--bg);
}

.values-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  padding: 36px;
}

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

.values-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfcfe;
}

.values-list strong,
.values-list span {
  display: block;
}

.values-list strong {
  color: var(--navy);
  margin-bottom: 4px;
}

.values-list span {
  color: var(--muted);
}

@media (max-width: 1020px) {
  .about-hero-grid,
  .about-story-grid,
  .values-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .about-stat-row {
    grid-template-columns: 1fr;
  }
}


.about-home-teaser .intro-strip {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}


/* Hero tagline right-to-left animation */
.hero-tagline-flow {
  position: relative;
  display: block;
  width: min(100%, 620px);
  height: 1.45rem;
  line-height: 1.45rem;
  overflow: hidden;
  white-space: nowrap;
}

.hero-tagline-flow span {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: heroTaglineRightToLeft 9s linear infinite;
  will-change: transform;
}

@keyframes heroTaglineRightToLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-185%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tagline-flow span {
    position: static;
    padding-left: 0;
    animation: none;
    transform: none;
  }
}


/* Front page test website notice */
.test-website-notice {
  background: #fff7ed;
  border-bottom: 1px solid rgba(240, 90, 26, 0.25);
  color: var(--navy);
}

.test-website-notice .container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 0.95rem;
}

.test-website-notice strong {
  color: var(--orange);
  white-space: nowrap;
}

.test-website-notice span {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 760px) {
  .test-website-notice .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }

  .test-website-notice strong {
    white-space: normal;
  }
}
