:root {
  --bg: #07111f;
  --panel: rgba(12, 25, 45, 0.86);
  --line: rgba(148, 166, 189, 0.18);
  --text: #f5f7fb;
  --muted: #9aa9bf;
  --brand: #4ca4ff;
  --brand-strong: #1e6fdf;
  --accent: #ff8a3d;
  --accent-soft: #ffc18f;
  --cta-green: #15950a;
  --cta-green-dark: #117a08;
  --success: #34d399;
  --shadow: 0 30px 80px rgba(1, 10, 24, 0.42);
  --radius-xl: 32px;
  --container: 1180px;
  --header-offset: 132px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(76, 164, 255, 0.18), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(255, 138, 61, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(52, 211, 153, 0.12), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091324 35%, #050d18 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(154, 169, 191, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 169, 191, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 86%);
  pointer-events: none;
  z-index: -2;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  z-index: 1200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(4, 12, 24, 0.82);
  backdrop-filter: blur(20px);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(2, 8, 20, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 104px;
}

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

.brand img {
  width: clamp(148px, 17vw, 192px);
  height: auto;
}

.site-header .brand {
  gap: 0;
}

.site-header .brand img {
  width: clamp(236px, 25vw, 356px);
}

.hero[id],
.section[id] {
  scroll-margin-top: calc(var(--header-offset) + 8px);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.hero h1,
.section-head h2,
.story-panel h3,
.about-panel h3,
.contact-panel h3,
.form-panel h3,
.point-card h4,
.step-card h4,
.stat-card strong,
.metric strong,
.about-badge strong,
.quick-panel h4 {
  font-family: "Sora", sans-serif;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

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

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-menu .menu-cta {
  background: linear-gradient(135deg, var(--cta-green), var(--cta-green-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 149, 10, 0.28);
}

.nav-menu .menu-cta:hover,
.nav-menu .menu-cta.is-active {
  color: #fff;
  background: linear-gradient(135deg, #18a60d, #13840a);
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s 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);
}

.hero {
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 60px;
  background: radial-gradient(circle, rgba(76, 164, 255, 0.18), transparent 70%);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.14), transparent 72%);
}

.hero-grid,
.value-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
}

.eyebrow,
.solution-chip,
.solution-tags span,
.btn,
.kicker {
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(76, 164, 255, 0.1);
  border: 1px solid rgba(76, 164, 255, 0.24);
  color: #dcecff;
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.14);
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: #b9d9ff;
}

.hero-copy p,
.section-head p,
.story-panel p,
.about-panel p,
.contact-panel p,
.form-panel p,
.point-card p,
.step-card p,
.proof-item span,
.contact-list span,
.contact-list a,
.form-note,
.footer-brand p,
.footer-column a,
.footer-column li,
.footer-bottom,
.quick-panel p {
  color: var(--muted);
}

.hero-copy p {
  margin: 0;
  max-width: 60ch;
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 34px 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(30, 111, 223, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(30, 111, 223, 0.34);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats,
.metric-grid,
.points-grid,
.process-grid,
.proof-grid,
.solutions-grid,
.footer-grid,
.form-grid {
  display: grid;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.metric-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr) minmax(0, 1.3fr);
  gap: 14px;
  align-items: start;
}

.hero-stats {
  margin-top: 10px;
}

.stat-card,
.proof-item,
.metric,
.point-card,
.step-card,
.contact-list li,
.field input,
.field select,
.field textarea,
.quick-actions a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.stat-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.hero-visual,
.about-visual {
  position: relative;
}

.visual-frame,
.panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.visual-frame {
  position: relative;
  padding: 16px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 19, 36, 0.7);
  overflow: hidden;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.22), transparent 72%);
}

.visual-frame img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 24px;
  animation: heroFloat 7s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  max-width: 230px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(5, 14, 27, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(2, 8, 20, 0.45);
  backdrop-filter: blur(16px);
  animation: noteFloat 7s ease-in-out infinite;
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.floating-note span,
.about-badge span {
  color: var(--muted);
}

.floating-note.top {
  top: 26px;
  right: -18px;
}

.floating-note.bottom {
  left: -16px;
  bottom: 34px;
  animation-delay: -3s;
}

.proof-strip {
  padding-bottom: 24px;
}

.proof-grid,
.solutions-grid,
.process-grid {
  gap: 18px;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  padding: 18px 18px 16px;
  border-radius: 22px;
  color: #d9e6f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.proof-item strong,
.footer-column strong,
.contact-list strong {
  color: #edf5ff;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
}

.proof-item span {
  display: block;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  max-width: 60ch;
  font-size: 1.04rem;
}

.kicker {
  display: inline-block;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.solution-card,
.about-visual {
  overflow: hidden;
  border-radius: 30px;
}

.solution-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  isolation: isolate;
  background: #0c1728;
}

.solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease, filter 0.5s ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.08) 0%, rgba(6, 14, 25, 0.44) 42%, rgba(4, 10, 18, 0.92) 100%);
}

.solution-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.02);
}

.solution-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
}

.solution-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
  font-weight: 700;
  color: #edf4ff;
  margin-bottom: 16px;
}

.solution-card h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.56rem;
  line-height: 1.14;
}

.solution-card p {
  margin: 0;
  color: rgba(245, 247, 251, 0.82);
  font-size: 0.98rem;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.solution-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: #eef4fd;
}

.panel {
  background: linear-gradient(180deg, rgba(15, 31, 55, 0.9), rgba(10, 21, 39, 0.94));
  border-radius: var(--radius-xl);
}

.story-panel,
.about-panel,
.contact-panel,
.form-panel {
  padding: clamp(28px, 4vw, 38px);
}

.story-panel h3,
.about-panel h3,
.contact-panel h3,
.form-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.metric {
  padding: 16px;
  border-radius: 20px;
  min-width: 0;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.12;
  margin-bottom: 4px;
}

.metric-specialized strong {
  font-size: 1.4rem;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.point-card {
  padding: 24px;
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.point-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(76, 164, 255, 0.18), rgba(255, 138, 61, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.point-icon svg {
  width: 24px;
  height: 24px;
  stroke: #dcebff;
}

.point-card h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.point-card p {
  margin: 0;
  font-size: 0.95rem;
}

.about-visual {
  min-height: 100%;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 12, 20, 0.08) 15%, rgba(4, 10, 18, 0.68) 100%);
}

.about-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(5, 14, 27, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.about-badge strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.check-list,
.contact-list,
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #dbe7f6;
}

.check-list span {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  margin-top: 1px;
  background: rgba(52, 211, 153, 0.14);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.2);
  font-weight: 800;
}

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

.step-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(76, 164, 255, 0.12), transparent 72%);
  transform: translate(36%, -36%);
}

.step-number {
  position: absolute;
  right: 22px;
  top: 18px;
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
}

.step-card h4 {
  position: relative;
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.step-card p {
  position: relative;
  margin: 0;
  max-width: 30ch;
}

.contact-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.contact-list li {
  padding: 16px 18px;
  border-radius: 20px;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-list span,
.contact-list a {
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-actions {
  margin-top: 22px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

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

.field.full {
  grid-column: 1 / -1;
}

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

.field label {
  color: #d9e7fa;
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7f90a8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(76, 164, 255, 0.62);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(76, 164, 255, 0.12);
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.form-panel form > .btn {
  margin-top: 18px;
}

.map-shell {
  margin-top: 22px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 320px;
}

.map-shell iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.88) contrast(1.03) brightness(0.92);
}

.footer {
  padding: 30px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 8, 16, 0.64);
  backdrop-filter: blur(14px);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 20px;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 42ch;
  font-size: 0.95rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-column ul {
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-column li,
.footer-bottom {
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.quick-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
}

.quick-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cta-green), var(--cta-green-dark));
  color: #fff;
  box-shadow: 0 18px 36px rgba(21, 149, 10, 0.34);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(21, 149, 10, 0.4);
}

.quick-toggle svg {
  width: 18px;
  height: 18px;
}

.quick-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(340px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(6, 14, 27, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.quick-contact.is-open .quick-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.quick-panel h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.quick-panel p {
  margin: 0 0 14px;
  font-size: 0.93rem;
}

.quick-actions {
  display: grid;
  gap: 10px;
}

.quick-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #edf5ff;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.quick-actions a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .value-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .visual-frame img {
    min-height: 540px;
  }

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

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

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

@media (max-width: 780px) {
  :root {
    --header-offset: 110px;
  }

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

  .nav {
    min-height: 88px;
  }

  .site-header .brand img {
    width: clamp(210px, 42vw, 270px);
  }

  .brand-copy {
    display: none;
  }

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

  .nav-shell {
    position: relative;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    padding: 10px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 14, 27, 0.96);
    box-shadow: 0 20px 48px rgba(2, 8, 20, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .hero-stats,
  .metric-grid,
  .points-grid,
  .form-grid,
  .proof-grid,
  .solutions-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .visual-frame {
    padding: 12px;
  }

  .visual-frame img,
  .about-visual img {
    min-height: 420px;
  }

  .solution-card {
    min-height: 420px;
  }

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

  .quick-contact {
    right: 14px;
    bottom: 14px;
  }

  .quick-toggle {
    padding: 14px 16px;
  }
}
