/* =========================================================
   BLOCK: Global Variables / Color Palette
   Palette:
   #CED4D2 | rgb(206,212,210)
   #FFD476 | rgb(255,212,118)
   #2C8879 | rgb(44,136,121)
========================================================= */

:root {
  --silver: #CED4D2;
  --gold: #FFD476;
  --green: #2C8879;

  --bg: #0f1817;
  --bg-soft: #162321;
  --bg-light: #CED4D2;

  --text: #f7faf9;
  --text-dark: #13201e;
  --muted: rgba(247, 250, 249, 0.72);
  --muted-dark: rgba(19, 32, 30, 0.68);

  --card: rgba(206, 212, 210, 0.09);
  --card-strong: rgba(206, 212, 210, 0.15);
  --line: rgba(206, 212, 210, 0.22);

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

/* =========================================================
   BLOCK: Base / Reset
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* =========================================================
   BLOCK: Header / Centered Logo Navigation
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(15, 24, 23, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 10px;
}

.header-logo picture {
  display: block;
}

.header-logo-img {
  display: block;
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

.header-logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--gold), var(--silver));
  box-shadow: 0 16px 42px rgba(255, 212, 118, 0.22);
}

.header-logo-text {
  display: grid;
  line-height: 1.05;
  text-align: left;
}

.header-logo-text strong {
  color: var(--text);
  letter-spacing: 0.14em;
  font-size: 1.2rem;
}

.header-logo-text em {
  color: var(--silver);
  font-size: 0.86rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  color: var(--silver);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

/* =========================================================
   BLOCK: Hero / Main Intro with Background Image
========================================================= */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 190px 0 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 24, 23, 0.96) 0%,
      rgba(15, 24, 23, 0.82) 48%,
      rgba(15, 24, 23, 0.92) 100%
    ),
    url("/assets/img/hero-it-service.webp") center / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    radial-gradient(circle at 18% 22%, rgba(44, 136, 121, 0.42), transparent 34%),
    radial-gradient(circle at 78% 30%, rgba(255, 212, 118, 0.2), transparent 30%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.14rem;
}

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

/* =========================================================
   BLOCK: Buttons
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--gold), var(--silver));
  box-shadow: 0 18px 40px rgba(255, 212, 118, 0.18);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(206, 212, 210, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 212, 118, 0.6);
}

/* =========================================================
   BLOCK: Hero Request Form
========================================================= */

.hero-request-card {
  padding: 34px;
  border: 1px solid rgba(206, 212, 210, 0.28);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(15, 24, 23, 0.88), rgba(15, 24, 23, 0.66)),
    rgba(206, 212, 210, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-request-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-request-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.hero-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(206, 212, 210, 0.26);
  border-radius: 16px;
  padding: 13px 15px;
  color: var(--text);
  background: rgba(206, 212, 210, 0.08);
  outline: none;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(206, 212, 210, 0.58);
}

.form-row select {
  cursor: pointer;
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: rgba(206, 212, 210, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 212, 118, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: none;
  cursor: pointer;
}

/* =========================================================
   BLOCK: Shared Sections
========================================================= */

.section {
  padding: 110px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head h2,
.about-content h2,
.contact-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.section-head p,
.about-content p,
.contact-content p {
  color: var(--muted);
}

/* =========================================================
   BLOCK: Services
========================================================= */

.services-section {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.38;
  transform: scale(1.02);
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(15, 24, 23, 0.34) 0%,
      rgba(15, 24, 23, 0.72) 48%,
      rgba(15, 24, 23, 0.94) 100%
    ),
    radial-gradient(circle at 88% 12%, rgba(255, 212, 118, 0.22), transparent 34%);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 212, 118, 0.58);
}

.service-card:hover::before {
  opacity: 0.52;
  transform: scale(1.08);
}

.service-repair::before {
  background-image: url("/assets/img/service-computer-repair.webp");
}

.service-software::before {
  background-image: url("/assets/img/service-software-setup.webp");
}

.service-web::before {
  background-image: url("/assets/img/service-web-support.webp");
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.service-card p {
  margin-bottom: 0;
  color: rgba(247, 250, 249, 0.86);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   BLOCK: About
========================================================= */

.about-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(44, 136, 121, 0.28), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(255, 212, 118, 0.14), transparent 30%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 36px;
  border: 1px solid rgba(206, 212, 210, 0.22);
  background: rgba(206, 212, 210, 0.06);
  box-shadow: var(--shadow);
}

.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 24, 23, 0.02) 0%,
      rgba(15, 24, 23, 0.08) 45%,
      rgba(15, 24, 23, 0.56) 100%
    ),
    radial-gradient(circle at 20% 15%, rgba(44, 136, 121, 0.2), transparent 34%);
  pointer-events: none;
}

.about-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.about-photo-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(206, 212, 210, 0.22);
  background: rgba(15, 24, 23, 0.78);
  backdrop-filter: blur(14px);
}

.about-photo-badge strong {
  color: var(--gold);
  letter-spacing: 0.14em;
}

.about-photo-badge span {
  color: var(--silver);
  font-size: 0.9rem;
}

.about-content {
  padding: 38px;
  border-radius: 34px;
  border: 1px solid rgba(255, 212, 118, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 212, 118, 0.13), transparent 34%),
    rgba(206, 212, 210, 0.055);
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

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

.owner-quote {
  position: relative;
  margin: 30px 0 0;
  padding: 26px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 212, 118, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 212, 118, 0.11), rgba(206, 212, 210, 0.045));
}

.owner-quote::before {
  content: "“";
  position: absolute;
  top: -12px;
  left: 22px;
  color: var(--gold);
  font-size: 4.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.65;
}

.owner-quote p {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: rgba(247, 250, 249, 0.88);
  font-size: 1.02rem;
}

.owner-quote cite {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-tags span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--text-dark);
  background: var(--silver);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-tags span:nth-child(2) {
  background: var(--gold);
}

.about-tags span:nth-child(3) {
  color: var(--text);
  background: var(--green);
}

/* =========================================================
   BLOCK: Workflow / Service Ticket Process
========================================================= */

.process-section {
  padding-top: 90px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 118, 0.12), transparent 30%),
    radial-gradient(circle at 90% 78%, rgba(44, 136, 121, 0.22), transparent 34%),
    var(--bg);
}

.ticket-workflow {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(206, 212, 210, 0.22);
  background:
    linear-gradient(145deg, rgba(206, 212, 210, 0.105), rgba(206, 212, 210, 0.035)),
    rgba(15, 24, 23, 0.82);
  box-shadow: var(--shadow);
}

.ticket-workflow::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 212, 118, 0.22), transparent 66%);
  pointer-events: none;
}

.ticket-workflow::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(206, 212, 210, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206, 212, 210, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.ticket-header,
.ticket-meta,
.workflow-line {
  position: relative;
  z-index: 2;
}

.ticket-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.ticket-label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticket-header h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.ticket-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-dark);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.ticket-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(44, 136, 121, 0.18);
}

.ticket-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 54px;
}

.ticket-meta div {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(206, 212, 210, 0.18);
  background: rgba(206, 212, 210, 0.065);
}

.ticket-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticket-meta strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
}

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

.workflow-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 29px;
  height: 3px;
  border-radius: 999px;
  background: rgba(206, 212, 210, 0.18);
}

.workflow-progress {
  position: absolute;
  left: 8%;
  top: 29px;
  height: 3px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  animation: workflowProgress 2.2s ease forwards;
  animation-delay: 0.35s;
}

.workflow-step {
  position: relative;
  min-height: 220px;
  padding: 0 6px;
}

.workflow-dot {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--gold), var(--silver));
  font-weight: 950;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(8px);
  opacity: 0;
  animation: workflowDot 0.6s ease forwards;
}

.workflow-step:nth-child(3) .workflow-dot {
  animation-delay: 0.4s;
}

.workflow-step:nth-child(4) .workflow-dot {
  animation-delay: 0.75s;
}

.workflow-step:nth-child(5) .workflow-dot {
  animation-delay: 1.1s;
}

.workflow-step:nth-child(6) .workflow-dot {
  animation-delay: 1.45s;
}

.workflow-step h4 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@keyframes workflowProgress {
  from {
    width: 0;
  }

  to {
    width: 84%;
  }
}

@keyframes workflowDot {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================================================
   BLOCK: Contact
========================================================= */

.contact-section {
  padding-bottom: 130px;
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 212, 118, 0.18), transparent 30%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 212, 118, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(44, 136, 121, 0.32), transparent 40%),
    rgba(206, 212, 210, 0.08);
}

.contact-card div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--silver);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-card a {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-card p {
  margin-bottom: 0;
}

/* =========================================================
   BLOCK: Contact Form
========================================================= */

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-details div {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(206, 212, 210, 0.18);
  background: rgba(206, 212, 210, 0.065);
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--silver);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--gold);
  font-weight: 900;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--text);
}

.contact-form-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 212, 118, 0.32);
  background:
    radial-gradient(circle at 100% 0%, rgba(44, 136, 121, 0.26), transparent 40%),
    rgba(206, 212, 210, 0.08);
  box-shadow: var(--shadow);
}

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

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-submit[disabled] {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

/* =========================================================
   BLOCK: Form Popup
========================================================= */

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 10, 9, 0.72);
  backdrop-filter: blur(10px);
}

.form-popup.open {
  display: flex;
}

.form-popup-box {
  position: relative;
  width: min(440px, 100%);
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(206, 212, 210, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 212, 118, 0.16), transparent 42%),
    #0f1817;
  box-shadow: var(--shadow);
}

.form-popup-box.success {
  border-color: rgba(44, 136, 121, 0.65);
}

.form-popup-box.error {
  border-color: rgba(255, 120, 120, 0.65);
}

.form-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: rgba(206, 212, 210, 0.1);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.form-popup-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.35rem;
}

.form-popup-box p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================================
   BLOCK: Footer
========================================================= */

.site-footer {
  padding: 34px 0;
  background: #0a1110;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  gap: 24px;
  align-items: center;
}

.footer-company strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.footer-company p,
.footer-center p {
  margin: 0;
  color: var(--silver);
  font-size: 0.92rem;
}

.footer-center {
  text-align: center;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  color: var(--gold);
  font-weight: 800;
}

/* =========================================================
   BLOCK: Animation / Reveal
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================================
   BLOCK: Responsive / Tablet & Mobile
========================================================= */

@media (max-width: 860px) {
  .header-inner {
    min-height: 86px;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .header-logo {
      margin: 0;
  }
  
  .header-logo-img {
      width: 165px;
  }

  .header-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .header-logo-text strong {
    font-size: 1rem;
  }

  .header-logo-text em {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(206, 212, 210, 0.08);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--silver);
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 96px;
    width: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 24, 23, 0.96);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .nav a::after {
    left: 16px;
    right: auto;
    width: 34px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    gap: 36px;
  }
  
  .hero-request-card {
    padding: 24px;
  }

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

  .footer-center,
  .footer-links {
    text-align: left;
  }

  .ticket-workflow {
    padding: 24px;
    border-radius: 28px;
  }

  .ticket-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticket-meta {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .workflow-line {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workflow-line::before,
  .workflow-progress {
    left: 31px;
    right: auto;
    top: 0;
    width: 3px;
  }

  .workflow-line::before {
    bottom: 0;
    height: auto;
  }

  .workflow-progress {
    height: 0;
    animation: workflowProgressMobile 2.2s ease forwards;
    animation-delay: 0.35s;
  }

  .workflow-step {
    min-height: auto;
    padding-left: 86px;
  }

  .workflow-dot {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
}

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

  .header-logo-img {
    width: 145px;
  }

  .brand-text em {
    display: none;
  }

  .hero-card,
  .service-card,
  .contact-card {
    border-radius: 24px;
  }

  .section {
    padding: 80px 0;
  }

  h1 {
    font-size: 3rem;
  }
}

@keyframes workflowProgressMobile {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}