@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Raleway SemiBold";
  src: url("../fonts/Raleway-SemiBold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Raleway Bold";
  src: url("../fonts/Raleway-Bold.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #08111f;
  --bg-soft: #101b32;
  --bg-panel: rgba(10, 19, 38, 0.72);
  --card: rgba(10, 18, 34, 0.78);
  --card-strong: rgba(11, 18, 31, 0.92);
  --line: rgba(172, 195, 255, 0.16);
  --text: #edf3ff;
  --text-soft: #b8c6e8;
  --muted: #7f91bc;
  --accent: #72f0d1;
  --accent-strong: #46c8fb;
  --accent-warm: #f9b55b;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --shell: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(69, 200, 251, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(114, 240, 209, 0.16), transparent 22%),
    linear-gradient(180deg, #091220 0%, #08111f 50%, #07101d 100%);
  color: var(--text);
  overflow-x: hidden;
}

main,
.site-footer,
.noscript-banner {
  position: relative;
  z-index: 1;
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-background-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 26, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3rem;
  width: 100%;
  height: 6rem;
  transform: none;
  background:
    radial-gradient(ellipse at center, rgba(70, 200, 251, 0.08), transparent 62%),
    linear-gradient(
      180deg,
      rgba(7, 14, 26, 0) 0%,
      rgba(7, 14, 26, 0.42) 32%,
      rgba(7, 14, 26, 0.72) 48%,
      rgba(255, 255, 255, 0.09) 50%,
      rgba(7, 14, 26, 0.72) 52%,
      rgba(7, 14, 26, 0.42) 68%,
      rgba(7, 14, 26, 0) 100%
    );
  opacity: 0.92;
  pointer-events: none;
}

.section > .shell {
  position: relative;
  z-index: 1;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.section-shape {
  display: none;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-heading.narrow {
  max-width: 38rem;
}

.section-heading h2,
.hero-copy h1,
.legal-shell h1 {
  margin: 0;
  font-family: "Raleway Bold", "Segoe UI", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.55rem, 6.2vw, 5rem);
}

.section-heading h2,
.legal-shell h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.hero-lead,
.section-heading p,
.footer-copy,
.profile-card p,
.booking-copy p,
.legal-shell p,
.legal-shell li {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Raleway SemiBold", "Segoe UI", sans-serif;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button-icon,
.nav-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.button-icon svg,
.nav-cta-icon svg {
  width: 100%;
  height: 100%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #02111f;
  box-shadow: 0 14px 32px rgba(70, 200, 251, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-block {
  width: 100%;
}

.button-block + .button-block {
  margin-top: 0.85rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 0.85rem;
}

.site-header .nav-shell {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled .nav-shell,
.site-header.is-open .nav-shell {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Raleway SemiBold", "Segoe UI", sans-serif;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 2.35rem;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(114, 240, 209, 0.12);
  color: var(--accent) !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.25rem 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  overflow: clip;
}

.hero-background,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-background {
  overflow: hidden;
}

.hero-gradient {
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(6, 12, 22, 0.2) 0%, rgba(8, 17, 31, 0.9) 65%),
    radial-gradient(circle at center, transparent 0%, rgba(8, 17, 31, 0.55) 55%, rgba(8, 17, 31, 0.95) 100%);
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 44% 56% 57% 43% / 43% 38% 62% 57%;
  filter: blur(28px);
  opacity: 0.32;
  animation: morph 13s ease-in-out infinite;
}

.hero-orb-a {
  top: 10%;
  right: -6%;
  width: min(42vw, 34rem);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(70, 200, 251, 0.6), transparent 68%);
}

.hero-orb-b {
  left: -10%;
  bottom: -6%;
  width: min(36vw, 28rem);
  aspect-ratio: 1;
  animation-duration: 15s;
  background: radial-gradient(circle, rgba(114, 240, 209, 0.48), transparent 70%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 44rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.75rem;
}

.hero-proof,
.profile-highlights,
.booking-points,
.offer-bullets,
.project-tags,
.testimonial-stars,
.legal-shell ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  color: var(--text-soft);
}

.hero-proof strong {
  color: var(--accent);
}

.hero-panel {
  position: relative;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-label,
.booking-label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-metrics {
  display: grid;
  gap: 1rem;
}

.metric-card,
.stat-card,
.offer-card,
.project-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.metric-card {
  padding: 1.2rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(172, 195, 255, 0.12);
}

.metric-value,
.stat-value {
  display: block;
  font-family: "Raleway Bold", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
}

.metric-label,
.stat-label {
  display: block;
  color: var(--text-soft);
  line-height: 1.5;
}

.section-shape {
  position: absolute;
  left: 50%;
  width: min(92vw, 82rem);
  height: 5rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.section-shape-bottom {
  bottom: -2.5rem;
  background: radial-gradient(circle at 50% 0%, rgba(114, 240, 209, 0.24), transparent 58%);
}

.section-shape-mid {
  bottom: -2rem;
  background: radial-gradient(circle at 50% 50%, rgba(70, 200, 251, 0.2), transparent 60%);
}

.section-grid-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.profile-mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  align-self: center;
}

.profile-mark {
  display: block;
  width: min(100%, 20rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.profile-card {
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(13rem, 18rem) minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.4rem;
}

.profile-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  min-height: 100%;
}

.profile-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto -12% -25% auto;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 38% 62% 54% 46% / 44% 37% 63% 56%;
  background: radial-gradient(circle, rgba(114, 240, 209, 0.4), transparent 66%);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-content h3,
.certification-card h3,
.offer-card h3,
.project-card h3,
.testimonial-name {
  margin: 0;
  font-family: "Raleway SemiBold", "Segoe UI", sans-serif;
}

.profile-role {
  margin: 0;
}

.profile-highlights,
.booking-points {
  display: grid;
  gap: 0.8rem;
}

.profile-highlights li,
.booking-points li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-soft);
}

.profile-highlights li::before,
.booking-points li::before,
.legal-shell li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.credibility-stack {
  display: grid;
  gap: 1.5rem;
}

.certification-row {
  margin-top: 2rem;
}

.profile-section-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 2.7rem;
}

.profile-cta-button {
  min-width: 13.5rem;
  animation: profile-cta-wiggle 4s ease-in-out infinite;
}

.profile-cta-arrows {
  letter-spacing: -0.15em;
  font-size: 1rem;
  transform: translateY(0.03rem);
}

.profile-cta-button:hover,
.profile-cta-button:focus-visible {
  animation: profile-cta-wiggle-fast 420ms ease 1;
}

@keyframes profile-cta-wiggle {
  0%,
  93%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  94.5% {
    transform: translateY(-1px) rotate(-2deg);
  }

  96% {
    transform: translateY(0) rotate(2deg);
  }

  97.5% {
    transform: translateY(-1px) rotate(-1.5deg);
  }

  99% {
    transform: translateY(0) rotate(1deg);
  }
}

@keyframes profile-cta-wiggle-fast {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  20% {
    transform: translateY(-1px) rotate(-2deg);
  }

  40% {
    transform: translateY(0) rotate(2deg);
  }

  60% {
    transform: translateY(-1px) rotate(-1.5deg);
  }

  80% {
    transform: translateY(0) rotate(1deg);
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.3rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(172, 195, 255, 0.1);
}

.certification-card {
  padding: 1.4rem;
}

.certification-card-featured {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.9rem 1.6rem 2.1rem;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(70, 200, 251, 0.16), transparent 38%),
    radial-gradient(circle at 50% 0%, rgba(114, 240, 209, 0.14), transparent 32%),
    rgba(11, 18, 31, 0.92);
}

.certification-card-featured::before {
  content: "";
  position: absolute;
  inset: auto 18% -26% 18%;
  height: 10rem;
  background: radial-gradient(circle, rgba(70, 200, 251, 0.2), transparent 68%);
  pointer-events: none;
}

.certification-card-featured h3 {
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.certification-card-featured .certifications {
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0;
}

.certification {
  flex: 1 1 12rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(172, 195, 255, 0.1);
}

.certification-featured {
  position: relative;
  z-index: 1;
  flex: 0 1 20rem;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1.35rem 1.2rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(114, 240, 209, 0.18);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.certification-featured:hover,
.certification-featured:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(70, 200, 251, 0.34);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(70, 200, 251, 0.2),
    0 0 56px rgba(70, 200, 251, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.certification-featured img {
  width: 156px;
  height: 156px;
}

.certification span {
  color: var(--text-soft);
  line-height: 1.5;
}

.certification-featured span {
  max-width: 15rem;
  color: var(--text);
  font-family: "Raleway SemiBold", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.offer-grid,
.skills-grid,
.history-timeline,
.project-grid,
.testimonial-grid {
  display: grid;
  gap: 1.4rem;
}

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

.history-timeline {
  position: relative;
  gap: 1.75rem;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(114, 240, 209, 0.32), rgba(172, 195, 255, 0.18));
}

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

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

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

.offer-card,
.skill-card,
.history-card,
.project-card,
.testimonial-card,
.booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-strong);
  box-shadow: var(--shadow);
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.offer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.skill-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.offer-card::after,
.skill-card::after,
.project-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: -25% auto auto 62%;
  width: 9rem;
  aspect-ratio: 1;
  border-radius: 38% 62% 54% 46% / 44% 37% 63% 56%;
  background: radial-gradient(circle, rgba(114, 240, 209, 0.16), transparent 68%);
  pointer-events: none;
}

.offer-topline,
.skill-level,
.project-meta {
  margin-bottom: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.offer-price,
.offer-section-label {
  margin: 0 0 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.offer-price {
  white-space: nowrap;
  color: var(--text);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.skill-tags li {
  position: relative;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(172, 195, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.skill-tags li.is-expert {
  padding-right: 1.9rem;
  background: rgba(243, 179, 33, 0.14);
  border: 1px solid rgba(243, 179, 33, 0.28);
  color: var(--text);
}

.skill-tags li.is-expert::after {
  content: "★";
  position: absolute;
  top: 50%;
  right: 0.7rem;
  transform: translateY(-50%);
  color: #ffd86a;
  font-size: 0.9rem;
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.history-marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 0.55rem;
}

.history-dot {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 0 6px rgba(70, 200, 251, 0.1);
}

.history-card {
  padding: 1.35rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.history-card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto 72%;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 38% 62% 54% 46% / 44% 37% 63% 56%;
  background: radial-gradient(circle, rgba(114, 240, 209, 0.12), transparent 68%);
  pointer-events: none;
}

.history-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.history-client,
.history-type {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.history-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Raleway SemiBold", "Segoe UI", sans-serif;
}

.history-dates,
.history-description {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.history-dates {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.history-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.history-achievements li {
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: rgba(114, 240, 209, 0.1);
  border: 1px solid rgba(114, 240, 209, 0.18);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.3;
}

.skills-footnote {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.skills-footnote-star {
  color: #ffd86a;
}

.offer-description,
.project-summary,
.project-outcome,
.testimonial-quote {
  color: var(--text-soft);
  line-height: 1.7;
}

.offer-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.offer-bullets li {
  position: relative;
  color: var(--text);
  line-height: 1.35;
}

.offer-bullets li {
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: rgba(114, 240, 209, 0.1);
  border: 1px solid rgba(114, 240, 209, 0.18);
  font-size: 0.9rem;
}

.offer-card .button {
  margin-top: auto;
  align-self: flex-end;
}

.project-card {
  display: grid;
  overflow: hidden;
}

.project-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 17rem;
  background: linear-gradient(135deg, rgba(70, 200, 251, 0.18), rgba(114, 240, 209, 0.1));
  overflow: hidden;
}

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

.project-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.project-tags li {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(172, 195, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.86rem;
}

.project-link {
  margin-top: 0.2rem;
  color: var(--accent);
  font-family: "Raleway SemiBold", "Segoe UI", sans-serif;
}

.project-link[aria-disabled="true"] {
  color: var(--muted);
  pointer-events: none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--accent-warm);
}

.testimonial-quote {
  margin: 0 0 1.5rem;
}

.testimonial-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.testimonial-role {
  margin: 0.2rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.testimonial-company,
.testimonial-period {
  margin: 0.12rem 0 0;
  line-height: 1.45;
}

.testimonial-name-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
}

.testimonial-name-link:hover {
  color: var(--accent);
}

.testimonial-linkedin-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.18rem;
  background: #0a66c2;
  color: #fff;
  font-size: 0.72rem;
  font-family: "Raleway Bold", "Segoe UI", sans-serif;
  line-height: 1;
}

.testimonial-company {
  color: var(--text);
  font-family: "Raleway SemiBold", "Segoe UI", sans-serif;
}

.testimonial-period {
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: 1.5rem;
  align-items: start;
}

.booking-card {
  padding: 1.5rem;
}

.booking-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

.booking-contact p {
  margin: 0.35rem 0;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 1.5rem;
  align-items: end;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 12, 22, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.footer-title {
  margin: 0 0 0.5rem;
  font-family: "Raleway SemiBold", "Segoe UI", sans-serif;
}

.footer-copy {
  margin: 0;
  max-width: 38rem;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  color: var(--text-soft);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--text);
}

.noscript-banner {
  padding: 1rem;
  text-align: center;
  background: #fff0bf;
  color: #251500;
}

.legal-page {
  padding: 7rem 0 3rem;
}

.legal-shell {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 14, 27, 0.86);
  box-shadow: var(--shadow);
}

.legal-shell h1,
.legal-shell h2,
.legal-shell h3 {
  color: var(--text);
}

.legal-shell h2 {
  margin-top: 2rem;
}

.legal-shell h3 {
  margin-top: 1.5rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

@keyframes morph {
  0%,
  100% {
    border-radius: 44% 56% 57% 43% / 43% 38% 62% 57%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 65% 35% 43% 57% / 58% 60% 40% 42%;
    transform: rotate(12deg) scale(1.07);
  }
}

@media (max-width: 980px) {
  .profile-mark-wrap {
    width: min(11rem, 42vw);
    justify-self: center;
  }

  .hero-shell,
  .section-grid-profile,
  .booking-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .skills-grid,
  .project-grid,
  .testimonial-grid,
  .profile-card,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .history-timeline::before {
    left: 0.95rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: rgba(8, 14, 27, 0.95);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

}

@media (max-width: 720px) {
  .section {
    padding: 5.5rem 0;
  }

  .hero {
    align-items: stretch;
  }

  .hero-shell {
    align-self: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-proof {
    display: grid;
    gap: 0.6rem;
  }

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

  .certification-featured {
    align-items: center;
  }

  .footer-links,
  .footer-legal {
    justify-content: flex-start;
  }

  .history-item {
    grid-template-columns: 1.9rem minmax(0, 1fr);
    gap: 1rem;
  }
}

@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;
  }
}
