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

:root {
  --cyan: #27c7d7;
  --blue: #3f83df;
  --orange: #ff8847;
  --purple: #70419a;
  --ink: #141b2c;
  --text: #344154;
  --muted: #6d7789;
  --line: #dce7ef;
  --soft: #f5fbfd;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(20, 27, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

.loading-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  gap: 16px;
  padding: 32px;
  color: var(--muted);
  text-align: center;
}

.loading-screen img {
  width: min(280px, 70vw);
}

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

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

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 38px;
  padding: 7px 18px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  color: #fff4df;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 14px clamp(18px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(220, 231, 239, 0.86);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 36px rgba(20, 27, 44, 0.08);
}

.brand img {
  width: 210px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #263248;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible,
.site-nav a.is-active {
  color: var(--purple);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--purple));
}

.nav-cta.is-active {
  box-shadow: 0 10px 28px rgba(112, 65, 154, 0.25);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 124px);
  background:
    radial-gradient(circle at 82% 24%, rgba(39, 199, 215, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange), var(--purple));
}

.hero-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.14;
}

.hero-shape-one {
  top: 70px;
  right: -90px;
  width: 370px;
  height: 370px;
  border: 34px solid var(--cyan);
  border-radius: 50%;
}

.hero-shape-two {
  bottom: 78px;
  left: -120px;
  width: 280px;
  height: 280px;
  border: 28px solid var(--orange);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  width: min(1220px, calc(100% - 36px));
  min-height: calc(100vh - 124px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-points span {
  padding: 9px 12px;
  border: 1px solid rgba(112, 65, 154, 0.17);
  border-radius: 999px;
  color: #263248;
  font-size: 0.92rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.78);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue) 52%, var(--purple));
  box-shadow: 0 14px 34px rgba(63, 131, 223, 0.26);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(112, 65, 154, 0.22);
  background: var(--white);
}

.hero-card {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}

.hero-card::before {
  position: absolute;
  inset: -20px 28px 34px -28px;
  z-index: -1;
  border-radius: 8px;
  content: "";
  background: linear-gradient(135deg, rgba(39, 199, 215, 0.18), rgba(255, 136, 71, 0.18));
}

.hero-card img {
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow);
}

.hero-card-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: var(--white);
  background: rgba(20, 27, 44, 0.76);
  backdrop-filter: blur(12px);
}

.hero-card-panel strong,
.hero-card-panel span {
  display: block;
}

.hero-card-panel span {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  min-height: 520px;
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(39, 199, 215, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange), var(--purple));
}

.page-hero > div {
  position: relative;
  z-index: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
}

.page-hero-media {
  justify-self: end;
  width: min(420px, 100%);
}

.page-hero-media img {
  width: 100%;
  max-height: 440px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow);
}

.hero-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(980px, calc(100% - 36px));
  margin: -36px auto 70px;
}

.hero-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
  box-shadow: 0 18px 54px rgba(20, 27, 44, 0.08);
}

.section,
.about-section,
.platform-section,
.contact-section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.platform-copy p,
.about-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.align-left {
  margin: 0;
  text-align: left;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
  background: var(--white);
}

.about-copy {
  display: grid;
  gap: 16px;
  padding-top: 8px;
  columns: 2;
}

.about-copy p {
  margin: 0;
}

.problem-section {
  background: linear-gradient(180deg, #f8fcfd, #ffffff);
}

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

.problem-grid article,
.service-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(20, 27, 44, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.problem-grid article:hover,
.service-card:hover,
.media-card:hover,
.case-card:hover,
.blog-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(112, 65, 154, 0.28);
  box-shadow: 0 24px 70px rgba(20, 27, 44, 0.1);
}

.problem-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 5px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--purple));
}

.problem-grid p,
.service-card p,
.timeline p,
.faq-list p {
  color: var(--muted);
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(39, 199, 215, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(20, 27, 44, 0.97), rgba(112, 65, 154, 0.9)),
    var(--ink);
}

.platform-section h2,
.platform-section h3 {
  color: var(--white);
}

.platform-section .eyebrow {
  color: #9eeaf0;
}

.platform-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  content: "✓";
  font-size: 0.88rem;
  font-weight: 900;
  background: var(--orange);
}

.guide-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

.guide-grid div {
  min-height: 116px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.guide-grid strong,
.guide-grid span {
  display: block;
}

.guide-grid span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-section div {
  padding: 34px 24px;
  text-align: center;
  background: var(--white);
}

.stats-section strong,
.stats-section span {
  display: block;
}

.stats-section strong {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
}

.stats-section span {
  color: var(--muted);
  font-weight: 800;
}

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

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

.service-card {
  min-height: 260px;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  margin-bottom: 20px;
  padding: 0 10px;
  border-radius: 5px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.service-card:nth-child(2n) .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--purple));
}

.industries-section {
  background:
    linear-gradient(180deg, rgba(245, 251, 253, 0.94), rgba(255, 255, 255, 1)),
    var(--soft);
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.industry-grid span {
  padding: 13px 18px;
  border: 1px solid rgba(112, 65, 154, 0.18);
  border-radius: 999px;
  color: #263248;
  font-weight: 800;
  background: var(--white);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.timeline span {
  color: var(--purple);
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

.faq-section {
  background: #f8fcfd;
}

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

.video-frame {
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-video {
  position: relative;
  z-index: 2;
  margin: -34px auto 76px;
}

.video-frame iframe,
.video-frame video,
.mini-video iframe,
.mini-video video,
.custom-media iframe,
.custom-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.mini-video {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.gallery-section,
.case-section {
  background: linear-gradient(180deg, #ffffff, #f8fcfd);
}

.gallery-grid,
.testimonial-grid,
.case-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-card,
.testimonial-card,
.case-card,
.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(20, 27, 44, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.media-card img,
.case-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}

.media-card div,
.case-card div,
.blog-card div {
  padding: 24px;
}

.media-card p,
.case-card p,
.blog-card p,
.testimonial-card p,
.custom-items p {
  color: var(--muted);
}

.testimonials-section {
  background:
    linear-gradient(135deg, rgba(39, 199, 215, 0.1), rgba(255, 136, 71, 0.1)),
    var(--soft);
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card .avatar {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 1.08rem;
}

.testimonial-card strong,
.testimonial-card span,
.case-card span,
.case-card strong,
.blog-card span,
.blog-card a {
  display: block;
}

.testimonial-card span,
.case-card span,
.blog-card span {
  color: var(--purple);
  font-size: 0.88rem;
  font-weight: 900;
}

.case-card strong {
  color: var(--ink);
}

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

.blog-card a {
  margin-top: 12px;
  color: var(--purple);
  font-weight: 900;
}

.custom-section {
  background: var(--soft);
}

.custom-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.custom-layout .section-heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.custom-items {
  display: grid;
  gap: 14px;
}

.custom-items article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.custom-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.custom-media img {
  width: 100%;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(20, 27, 44, 0.05);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  padding: 0 22px 22px;
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(39, 199, 215, 0.12), rgba(255, 136, 71, 0.12)),
    #ffffff;
}

.contact-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--purple));
  box-shadow: var(--shadow);
}

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

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

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(20, 27, 44, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: #334056;
  font-size: 0.93rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdbe6;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-status.is-success {
  color: #14734f;
}

.form-status.is-error {
  color: #a3162c;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(63, 131, 223, 0.18);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.site-footer img {
  width: 160px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
}

.maintenance {
  display: grid;
  width: min(760px, calc(100% - 36px));
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  margin: 0 auto;
  padding: 60px 0;
}

.maintenance img {
  width: min(280px, 74vw);
  margin-bottom: 34px;
}

.maintenance .copy {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.18rem;
}

.maintenance a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 54%, var(--purple));
  box-shadow: 0 16px 38px rgba(63, 131, 223, 0.24);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero-inner,
  .platform-section,
  .process-section,
  .contact-section,
  .about-section,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    width: min(520px, 100%);
    margin: 0;
  }

  .page-hero-media {
    justify-self: start;
  }

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

@media (max-width: 860px) {
  .brand img {
    width: 176px;
    height: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 8px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 74px;
  }

  h1 {
    font-size: clamp(2.65rem, 10.6vw, 4.55rem);
    line-height: 1;
  }

  .service-grid,
  .stats-section,
  .gallery-grid,
  .testimonial-grid,
  .case-grid,
  .blog-grid,
  .hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip {
    flex-direction: column;
    gap: 0;
    padding: 8px 16px;
  }

  .site-header {
    min-height: 76px;
  }

  .hero-points,
  .hero-actions {
    display: grid;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .problem-grid,
  .service-grid,
  .stats-section,
  .guide-grid,
  .gallery-grid,
  .testimonial-grid,
  .case-grid,
  .blog-grid,
  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section,
  .about-section,
  .platform-section,
  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero-card-panel {
    position: static;
    border-radius: 0 0 8px 8px;
  }

  .hero-card img {
    border-radius: 8px 8px 0 0;
  }
}

@media (max-width: 420px) {
  .problem-grid article,
  .service-card,
  .contact-form,
  .guide-panel,
  .contact-card {
    padding: 22px;
  }

  .industry-grid {
    justify-content: stretch;
  }

  .industry-grid span {
    width: 100%;
    border-radius: 6px;
    text-align: center;
  }
}
