@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #eef3fb;
  --surface-soft: #f9fbff;
  --text: #1d2740;
  --muted: #68758f;
  --line: #d9e2f0;
  --primary: #1f6bff;
  --primary-dark: #164fc0;
  --accent: #ff8b38;
  --navy: #101a2f;
  --navy-soft: #17233d;
  --shadow: 0 18px 45px rgba(24, 39, 75, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
  --nav-height: 74px;
  --header-offset: 8.8rem;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(31, 107, 255, 0.06), transparent 26%),
    linear-gradient(180deg, #f7f9fd 0%, #f3f6fb 100%);
  color: var(--text);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.is-ready {
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(31, 107, 255, 0.18);
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 5.4rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(238, 243, 251, 0.7), rgba(244, 247, 252, 0.92));
  border-block: 1px solid #e6edf7;
}

.site-header {
  position: relative;
  z-index: 40;
  padding: 0 0 1rem;
}

.top-strip {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #eef4ff;
}

.top-strip-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}

.top-contact a,
.top-social a,
.top-social span {
  color: inherit;
}

.top-social span {
  font-weight: 700;
}

.nav {
  width: min(calc(100% - 2rem), var(--max));
  min-height: var(--nav-height);
  margin: 0 auto;
  padding: 0.75rem 0.9rem 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(217, 226, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(18, 27, 48, 0.06);
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  padding: 4px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8edf6;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.1;
}

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

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.7rem 0.92rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--primary);
  background: #eef4ff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: var(--header-offset);
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 35;
  overflow-y: auto;
  padding: 1.15rem 1.5rem 1.5rem;
  background: #f5f7fb;
  box-shadow: inset 0 1px 0 #e1e8f4;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-panel.is-open {
  display: block;
  opacity: 1;
}

.mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #dde6f3;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.mobile-panel a::after {
  content: "->";
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 107, 255, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow: 0 10px 24px rgba(18, 27, 48, 0.08);
}

.btn-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.hero-section,
.page-intro {
  padding: 4.2rem 0 5rem;
}

.hero-section {
  background:
    linear-gradient(135deg, rgba(11, 21, 44, 0.96), rgba(23, 40, 78, 0.94)),
    linear-gradient(180deg, #101a2f, #17233d);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.04) 30%, rgba(255, 255, 255, 0.04) 34%, transparent 34%, transparent 100%),
    linear-gradient(140deg, transparent 0%, transparent 62%, rgba(255, 255, 255, 0.03) 62%, rgba(255, 255, 255, 0.03) 66%, transparent 66%, transparent 100%);
  pointer-events: none;
}

.hero-grid,
.page-intro-grid,
.featured-video-card,
.contact-grid,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-intro h1,
.section-head h2,
.info-card h2,
.summary-card h2,
.site-footer h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.hero-copy {
  color: #ffffff;
}

.page-intro h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.hero-summary,
.page-intro-copy,
.section-copy,
.info-card p,
.feature-card p,
.process-card p,
.preview-card p,
.summary-card p,
.video-copy p,
.contact-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-summary {
  max-width: 38rem;
  margin: 1rem 0 0;
  font-size: 1.08rem;
}

.hero-section .hero-summary {
  color: #d7e2f4;
}

.page-intro-copy {
  max-width: 42rem;
  margin: 1rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-points,
.summary-list,
.category-row,
.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-points {
  margin-top: 1.3rem;
}

.hero-points span,
.summary-list span,
.category-pill,
.social-pill,
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-section .section-label {
  color: #90b9ff;
}

.hero-section .hero-points span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #eef4ff;
}

.section-label,
.summary-label {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual,
.summary-card,
.info-card,
.feature-card,
.process-card,
.preview-card,
.contact-card,
.featured-video-card,
.portfolio-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  padding: 1.5rem;
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(31, 107, 255, 0.08), rgba(255, 139, 56, 0.06)),
    var(--surface);
  overflow: hidden;
}

.dashboard-card {
  position: relative;
  height: 100%;
  border: 1px solid #dce5f3;
  border-radius: calc(var(--radius) - 4px);
  background: #fff;
  overflow: hidden;
}

.dashboard-top {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid #edf2f8;
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9d6eb;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1rem;
  padding: 1rem;
}

.dashboard-panel {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid #e4ebf6;
}

.dashboard-panel-large {
  grid-row: span 2;
}

.dashboard-panel strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

.dashboard-panel small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  height: 150px;
  margin-top: 1rem;
  padding-top: 0.5rem;
}

.chart-bars span {
  width: 18%;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--primary), #71a8ff);
  height: var(--bar-height);
}

.floating-note {
  position: absolute;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(18, 27, 48, 0.08);
  font-weight: 800;
  color: var(--navy);
}

.floating-note-one {
  left: 1rem;
  bottom: 1rem;
}

.floating-note-two {
  right: 1rem;
  top: 1.4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

.metric-card span {
  color: #cfdbf1;
  line-height: 1.62;
  font-size: 0.92rem;
}

.summary-card,
.info-card,
.feature-card,
.process-card,
.contact-card {
  padding: 1.5rem;
}

.summary-card h2,
.section-head h2,
.info-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.14;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.14;
}

.service-grid,
.feature-grid,
.preview-grid,
.service-detail-grid,
.process-grid,
.stack-grid,
.portfolio-grid {
  display: grid;
  gap: 1rem;
}

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

.service-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

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

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

.card-number,
.process-card span {
  display: inline-flex;
  margin-bottom: 0.95rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.info-card h3,
.feature-card h3,
.process-card h3,
.preview-card h3,
.video-copy h3,
.contact-card h2 {
  margin: 0 0 0.7rem;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 1.22rem;
}

.detail-list {
  margin: 0.8rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.detail-list li + li {
  margin-top: 0.5rem;
}

.preview-card {
  overflow: hidden;
  padding: 0;
}

.preview-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.preview-card-body {
  padding: 1rem;
}

.preview-card-body p {
  margin: 0.35rem 0 0;
}

.featured-video-card {
  padding: 1.2rem;
  align-items: start;
}

.video-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  background: #0c1220;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1220;
}

.video-copy {
  padding: 0.4rem 0.2rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.filter-btn {
  background: #fff;
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: rgba(31, 107, 255, 0.22);
  background: #eef4ff;
  color: var(--primary);
}

.portfolio-item {
  overflow: hidden;
  padding: 0;
}

.portfolio-item button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.portfolio-thumb {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.03);
}

.portfolio-copy {
  padding: 1rem;
}

.portfolio-copy h3 {
  margin: 0 0 0.45rem;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
}

.portfolio-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.empty-state {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed #cfd9e8;
  border-radius: var(--radius-sm);
  color: var(--muted);
}

.empty-state.is-visible {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(16, 26, 47, 0.72);
}

.modal.is-open {
  display: flex;
}

.modal-dialog {
  width: min(900px, 100%);
  max-height: calc(100svh - 2.5rem);
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(16, 26, 47, 0.16);
}

.modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #ecf1f8;
}

.modal-bar h2 {
  margin: 0;
  font-size: 1rem;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
}

.modal-media img {
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
  background: #f7f9fd;
}

.modal-copy {
  padding: 1rem 1.1rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: #c8d6ea;
}

.contact-link span {
  display: grid;
  gap: 0.2rem;
}

.contact-link strong {
  color: var(--text);
}

.contact-link small {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

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

.field label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field select option {
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(31, 107, 255, 0.35);
  box-shadow: 0 0 0 4px rgba(31, 107, 255, 0.08);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  color: var(--primary);
}

.site-footer {
  margin-top: 2rem;
  padding-top: 2.5rem;
  background: var(--navy);
  color: #e9effa;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 2rem;
  padding: 0 0 2rem;
}

.footer-brand img {
  width: 96px;
  padding: 0.4rem;
  border-radius: 18px;
  background: #fff;
}

.footer-brand h2 {
  max-width: 14ch;
  margin-top: 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
}

.footer-brand p {
  max-width: 38rem;
  margin: 0.9rem 0 0;
  color: #b8c4d9;
  line-height: 1.72;
}

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

.footer-column h3 {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  padding: 0.35rem 0;
  color: #b8c4d9;
}

.footer-column a:hover {
  color: #fff;
}

.social-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #eef4ff;
}

.footer-bottom {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #b8c4d9;
  font-size: 0.9rem;
}

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

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

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

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

  .hero-grid,
  .page-intro-grid,
  .featured-video-card,
  .contact-grid,
  .about-layout,
  .section-head,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .feature-grid,
  .preview-grid,
  .process-grid,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid-four,
  .service-detail-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  :root {
    --nav-height: 68px;
  }

  .site-header {
    padding: 0.75rem 0 0.85rem;
  }

  .nav {
    width: min(calc(100% - 1rem), var(--max));
    padding: 0.6rem 0.75rem;
  }

  .top-strip {
    display: none;
  }

  .brand-copy span {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .mobile-panel {
    padding: 0.7rem 1rem 1.25rem;
  }

  .mobile-panel a {
    padding: 0.95rem 0.2rem;
    font-size: 1.08rem;
  }

  .hero-section,
  .page-intro {
    padding: 2.6rem 0 4rem;
  }

  .hero-grid,
  .page-intro-grid {
    gap: 1.35rem;
  }

  .hero-copy h1,
  .page-intro h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-summary,
  .page-intro-copy {
    font-size: 1rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .service-grid,
  .feature-grid,
  .preview-grid,
  .service-grid-four,
  .service-detail-grid,
  .process-grid,
  .hero-metrics,
  .portfolio-grid,
  .footer-columns,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-panel-large {
    grid-row: auto;
  }

  .preview-card img,
  .portfolio-thumb {
    height: 220px;
  }

  .hero-visual {
    min-height: auto;
    padding: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .section-head .btn {
    width: 100%;
  }

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

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