:root {
  --primary-blue: #003366;
  --primary-purple: #071236;
  --primary-green: #66cc66;
  --light-blue: #dbeafe;
  --neutral-1000: #ff6600;

  --white: #ffffff;
  --ink: #071236;
  --text: #1e2b49;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-blue: #eff6ff;
  --border: rgba(7, 18, 54, 0.10);
  --border-strong: rgba(7, 18, 54, 0.18);
  --shadow-sm: 0 10px 26px rgba(7, 18, 54, 0.08);
  --shadow-md: 0 22px 55px rgba(7, 18, 54, 0.14);
  --shadow-lg: 0 30px 90px rgba(7, 18, 54, 0.20);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1180px;
  --header-height: 82px;
  --ease: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  direction: rtl;
  text-align: right;
  font-family: Vazirmatn, Vazir, Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(219, 234, 254, 0.68), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

ul,
ol,
dl,
dd,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

p {
  color: var(--muted);
}

::selection {
  background: rgba(102, 204, 102, 0.34);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease);
}

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

:focus-visible {
  outline: 3px solid rgba(255, 102, 0, 0.55);
  outline-offset: 3px;
}

/* .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(7, 18, 54, 0.08);
  backdrop-filter: blur(20px);
} */

.header-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-purple);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background:
    linear-gradient(145deg, var(--primary-blue), var(--primary-purple));
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.22);
}

.nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(7, 18, 54, 0.08);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.72);
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.3;
  border: 1px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

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

.btn-primary {
  color: var(--primary-purple);
  background: linear-gradient(135deg, var(--primary-green), #a8f0a8);
  box-shadow: 0 14px 34px rgba(102, 204, 102, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(102, 204, 102, 0.38);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

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

.btn-ghost {
  color: var(--primary-purple);
  background: rgba(7, 18, 54, 0.04);
  border-color: rgba(7, 18, 54, 0.06);
}

.btn-outline {
  color: var(--primary-blue);
  background: var(--white);
  border-color: rgba(0, 51, 102, 0.18);
}

.btn-outline:hover {
  border-color: rgba(0, 51, 102, 0.34);
  box-shadow: var(--shadow-sm);
}

.btn-text {
  padding-inline: 8px;
  color: var(--neutral-1000);
  background: transparent;
}

.btn-large {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 1rem;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 92px 0 78px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 26%, rgba(255, 102, 0, 0.23), transparent 18rem),
    radial-gradient(circle at 84% 20%, rgba(102, 204, 102, 0.22), transparent 20rem),
    linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -38% -8%;
  height: 240px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(58px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 54px;
}

.hero-content {
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.eyebrow {
  padding: 8px 14px;
  color: var(--primary-green);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-1000);
  box-shadow: 0 0 0 6px rgba(255, 102, 0, 0.14);
}

.hero h1 {
  margin-block: 18px 18px;
  color: var(--white);
  /* font-size: clamp(2.05rem, 4vw, 4.4rem); */
  line-height: 1.18;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 30px 18px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chips li {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.dashboard-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-green), var(--neutral-1000), var(--primary-blue));
}

.gallery-mockup {
  padding: 26px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-block-end: 18px;
}

.dashboard-topbar > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-green);
  box-shadow: 0 0 0 7px rgba(102, 204, 102, 0.16);
}

.dashboard-date {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary-blue);
  background: var(--light-blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.gallery-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px;
  margin-block-end: 18px;
  border-radius: 18px;
  background: rgba(219, 234, 254, 0.72);
}

.gallery-tabs span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 850;
}

.gallery-tabs .is-active {
  color: var(--primary-purple);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(7, 18, 54, 0.08);
}

.mockup-samples {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-block-end: 18px;
}

.mockup-card {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(102, 204, 102, 0.18), transparent 42%),
    linear-gradient(145deg, #f8fbff, #ffffff);
  border: 1px solid var(--border);
}

.mockup-card.is-featured {
  grid-row: span 2;
  min-height: 220px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 102, 0, 0.34), transparent 34%),
    linear-gradient(145deg, var(--primary-blue), var(--primary-purple));
}

.mockup-card span {
  color: inherit;
  opacity: 0.72;
  font-size: 0.9rem;
  font-weight: 800;
}

.mockup-card strong {
  color: inherit;
  font-size: 1.04rem;
  line-height: 1.55;
}

.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-metrics div {
  padding: 14px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.mockup-metrics dt {
  color: var(--primary-purple);
  font-size: 1.15rem;
  font-weight: 950;
}

.mockup-metrics dd {
  color: var(--muted);
  font-size: 0.82rem;
}

.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 162px;
  padding: 14px 16px;
  border-radius: 20px;
  color: var(--primary-purple);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.floating-card strong {
  display: block;
  margin-block-start: 4px;
  color: var(--primary-blue);
}

.floating-card-a {
  inset-block-start: 10%;
  inset-inline-start: -18px;
}

.floating-card-b {
  inset-block-end: 12%;
  inset-inline-end: -14px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-block-start: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid article {
  min-height: 106px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 18, 54, 0.08);
  box-shadow: var(--shadow-sm);
}

.trust-grid strong {
  display: block;
  color: var(--primary-purple);
  font-size: 1.35rem;
  font-weight: 950;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 750;
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-block-end: 34px;
}

.section-heading.narrow {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-row {
  grid-template-columns: 1fr minmax(240px, 420px);
  align-items: end;
}

.section-kicker {
  margin-inline: auto;
  padding: 7px 12px;
  color: var(--primary-blue);
  background: var(--light-blue);
  border: 1px solid rgba(0, 51, 102, 0.08);
}

.section-heading-row .section-kicker {
  margin-inline: 0;
}

.section h2,
.cta-card h2,
.consultation-copy h2,
.faq-intro h2,
.pricing-mini-panel h2 {
  color: var(--primary-purple);
  /* font-size: clamp(1.7rem, 2.8vw, 3rem); */
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.sample-categories {
  padding-block-end: 28px;
}

.sample-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.filter-chip {
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--primary-blue);
  background: transparent;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.filter-chip:hover {
  transform: translateY(-1px);
  background: var(--surface-blue);
}

.filter-chip.is-active {
  color: var(--primary-purple);
  background: linear-gradient(135deg, var(--primary-green), #a8f0a8);
  box-shadow: 0 12px 28px rgba(102, 204, 102, 0.22);
}

.samples-section {
  padding-block-start: 36px;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sample-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.sample-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 51, 102, 0.22);
  box-shadow: var(--shadow-md);
}

.sample-card.is-hidden {
  display: none;
}

.sample-card__media {
  position: relative;
  min-height: 190px;
  padding: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(102, 204, 102, 0.20), transparent 30%),
    linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  overflow: hidden;
}

.sample-card__media::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 120px;
  background: rgba(255, 255, 255, 0.13);
  filter: blur(28px);
}

.browser-bar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  padding: 11px 13px;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(7, 18, 54, 0.26);
}

.browser-bar span:first-child {
  background: var(--neutral-1000);
}

.browser-bar span:nth-child(2) {
  background: var(--primary-green);
}

.media-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  min-height: 118px;
  padding: 14px;
  border-radius: 0 0 22px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top: 0;
}

.media-layout span {
  border-radius: 14px;
  background: linear-gradient(135deg, var(--light-blue), #ffffff);
  border: 1px solid rgba(7, 18, 54, 0.06);
}

.media-layout span:first-child {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(102, 204, 102, 0.45), rgba(219, 234, 254, 0.70));
}

.media-layout.is-stacked {
  grid-template-columns: repeat(2, 1fr);
}

.media-layout.is-stacked span:first-child,
.product-grid span:first-child,
.service-layout span:first-child {
  grid-row: auto;
}

.product-grid,
.service-layout {
  grid-template-columns: repeat(2, 1fr);
}

.medical-layout {
  grid-template-columns: 0.75fr 1.25fr;
}

.medical-layout span:first-child {
  border-radius: 999px;
}

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

.course-layout span:first-child {
  min-height: 54px;
  grid-row: auto;
}

.media-medical {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 102, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #003366, #0a5d7a);
}

.media-education {
  background:
    radial-gradient(circle at 16% 18%, rgba(102, 204, 102, 0.18), transparent 30%),
    linear-gradient(135deg, #071236, #253b74);
}

.media-services {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 102, 0, 0.20), transparent 30%),
    linear-gradient(135deg, #071236, #003366);
}

.sample-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.sample-badge {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--primary-blue);
  background: var(--light-blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.sample-card h3 {
  color: var(--primary-purple);
  font-size: 1.18rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.sample-fit {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.sample-fit strong {
  color: var(--primary-purple);
  font-size: 0.88rem;
}

.sample-fit span {
  color: var(--muted);
  font-size: 0.88rem;
}

.check-list {
  display: grid;
  gap: 8px;
}

.check-list li {
  position: relative;
  padding-inline-start: 24px;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-green);
  box-shadow: 0 0 0 5px rgba(102, 204, 102, 0.14);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-start: auto;
  padding-block-start: 4px;
}

.card-actions .btn {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.86rem;
}

.why-section {
  background:
    linear-gradient(180deg, rgba(219, 234, 254, 0.34), rgba(255, 255, 255, 0));
}

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

.step-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card-wide {
  grid-column: span 2;
}

.step-number {
  display: block;
  margin-block-end: 28px;
  color: rgba(0, 51, 102, 0.12);
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.step-card h3 {
  margin-block-end: 10px;
  color: var(--primary-purple);
  font-size: 1.15rem;
}

.process-panel {
  padding: 46px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 10%, rgba(102, 204, 102, 0.14), transparent 22rem),
    linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.process-panel .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary-green);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-panel h2,
.process-panel p {
  color: var(--white);
}

.process-panel p {
  opacity: 0.76;
}

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

.process-grid article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-block-end: 18px;
  border-radius: 16px;
  color: var(--primary-purple);
  background: var(--primary-green);
  font-weight: 950;
}

.process-grid h3 {
  margin-block-end: 8px;
  color: var(--white);
  font-size: 1rem;
}

.section-cta-inline {
  display: flex;
  justify-content: center;
  margin-block-start: 28px;
}

.consultation-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(102, 204, 102, 0.16), transparent 18rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: 28px;
}

.consultation-copy {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  display: grid;
  gap: 16px;
}

.consultation-copy .section-kicker {
  margin-inline: 0;
}

.consultation-benefits {
  display: grid;
  gap: 12px;
  margin-block-start: 10px;
}

.consultation-benefits article {
  padding: 16px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.consultation-benefits strong {
  display: block;
  color: var(--primary-purple);
  margin-block-end: 4px;
}

.consultation-benefits span {
  color: var(--muted);
  font-size: 0.92rem;
}

.consultation-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

.form-row label {
  color: var(--primary-purple);
  font-weight: 900;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 18, 54, 0.13);
  border-radius: 18px;
  padding: 13px 15px;
  color: var(--text);
  background: var(--surface-soft);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 51, 102, 0.34);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(0, 51, 102, 0.08);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 116px;
}

.form-submit {
  width: 100%;
}

.form-message {
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--primary-purple);
  background: rgba(102, 204, 102, 0.18);
  border: 1px solid rgba(102, 204, 102, 0.32);
  font-weight: 850;
}

.pricing-preview {
  padding-block: 60px;
}

.pricing-mini-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pricing-mini-panel .section-kicker {
  margin-inline: 0;
  margin-block-end: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  display: grid;
  gap: 12px;
}

.faq-intro .section-kicker {
  margin-inline: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--primary-purple);
  background: transparent;
  text-align: right;
  font-weight: 950;
}

.faq-item button span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--primary-blue);
  background: var(--light-blue);
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
  color: var(--primary-purple);
  background: var(--primary-green);
}

.faq-panel {
  padding: 0 22px 22px;
}

.cta-section {
  padding: 84px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 102, 0, 0.25), transparent 20rem),
    radial-gradient(circle at 92% 20%, rgba(102, 204, 102, 0.26), transparent 20rem),
    linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-card h2 {
  margin-block: 14px 12px;
  max-width: 760px;
  color: var(--white);
}

.cta-card p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  padding-block: 70px 28px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--primary-purple);
}

.site-footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 320px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.70);
  transition: color var(--ease), transform var(--ease);
}

.footer-col a:hover {
  color: var(--primary-green);
  transform: translateX(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-block-start: 42px;
  padding-block-start: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a {
  color: var(--primary-green);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto auto 1fr;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 20px auto 20px;
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow: auto;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
  }

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

  .nav a {
    padding: 13px 16px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-content {
    max-width: 760px;
  }

  .floating-card-a {
    inset-inline-start: 12px;
  }

  .floating-card-b {
    inset-inline-end: 12px;
  }

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

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

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

  .consultation-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .consultation-copy,
  .faq-intro {
    position: static;
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 74px;
  }

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

  .header-shell {
    min-height: var(--header-height);
    grid-template-columns: auto auto 1fr;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .header-actions .btn-primary {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding-block: 58px 58px;
  }

  .hero h1 {
    /* font-size: clamp(2rem, 11vw, 3rem); */
  }

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

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

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

  .hero-chips {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-mockup {
    padding: 18px;
    border-radius: 28px;
  }

  .gallery-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup-samples,
  .mockup-metrics {
    grid-template-columns: 1fr;
  }

  .mockup-card.is-featured {
    min-height: 130px;
    grid-row: auto;
  }

  .floating-card {
    display: none;
  }

  .trust-strip {
    margin-block-start: 0;
    padding-block-start: 18px;
  }

  .trust-grid,
  .samples-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading-row,
  .pricing-mini-panel,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .section-heading-row .section-kicker {
    margin-inline: auto;
  }

  .section-heading-row {
    text-align: center;
  }

  .sample-categories {
    padding-block-end: 16px;
  }

  .sample-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    padding: 10px;
    border-radius: 24px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .sample-filters::-webkit-scrollbar {
    height: 0;
  }

  .filter-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .samples-section {
    padding-block-start: 24px;
  }

  .sample-card__media {
    min-height: 170px;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .card-actions .btn {
    width: 100%;
  }

  .step-card,
  .step-card-wide {
    grid-column: auto;
    min-height: auto;
  }

  .process-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .consultation-grid {
    gap: 22px;
  }

  .consultation-form {
    padding: 20px;
    border-radius: 28px;
  }

  .faq-item button {
    align-items: flex-start;
    padding: 18px;
  }

  .faq-panel {
    padding: 0 18px 18px;
  }

  .cta-section {
    padding-block: 64px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .header-actions .btn-primary {
    display: none;
  }

  .media-layout {
    min-height: 100px;
  }

  .sample-card__content {
    padding: 18px;
  }
}

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