:root {
  --background: #ffffff;
  --foreground: #1e293b;
  --primary: #0a1628;
  --primary-light: #0d2b5c;
  --primary-medium: #1565c0;
  --accent: #00b4d8;
  --accent-light: #38bdf8;
  --cta: #14b8a6;
  --cta-hover: #0f9f90;
  --success: #10b981;
  --warning: #f59e0b;
  --surface: #f8fafc;
  --card: #ffffff;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 10px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--foreground);
  background: var(--background);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-surface {
  background: var(--surface);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  font-weight: 800;
}

.section-heading p {
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow-dark {
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  height: 44px;
  padding: 0 24px;
  font-size: 0.95rem;
}

.btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: 1.05rem;
}

.btn-primary {
  color: #ffffff;
  background: var(--cta);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 14px 34px rgba(20, 184, 166, 0.32);
}

.btn-accent {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #0096c7);
  box-shadow: 0 12px 28px rgba(0, 180, 216, 0.28);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #0096c7, var(--accent));
  box-shadow: 0 16px 34px rgba(0, 180, 216, 0.36);
}

.btn-light {
  color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-outline-light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand img {
  height: 56px;
  width: auto;
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 32px;
}

.desktop-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.desktop-nav a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: rgba(255, 255, 255, 0.98);
  transition: max-height 0.25s ease, border-color 0.25s ease;
}

.mobile-menu nav {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}

.mobile-menu a {
  display: block;
  padding: 6px 0;
  font-weight: 600;
}

.mobile-menu.is-open {
  max-height: 420px;
  border-color: rgba(226, 232, 240, 0.8);
}

.page-main {
  padding-top: 80px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-medium) 100%);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.page-hero::before {
  top: 56px;
  right: 14%;
  width: 240px;
  height: 240px;
  background: rgba(56, 189, 248, 0.24);
}

.page-hero::after {
  left: 8%;
  bottom: 32px;
  width: 320px;
  height: 320px;
  background: rgba(20, 184, 166, 0.18);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.page-hero__content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-hero__content p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.8;
}

.page-hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.page-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.page-hero__meta-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(5, 15, 40, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-hero__meta-card strong,
.page-hero__meta-card span {
  display: block;
}

.page-hero__meta-card strong {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
}

.page-hero__meta-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.content-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.content-card h3 {
  margin: 0 0 14px;
  color: var(--foreground);
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 800;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.75;
}

.content-card p {
  margin: 0;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
}

.content-card li + li {
  margin-top: 10px;
}

.content-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.1);
  font-size: 0.74rem;
  font-weight: 700;
}

.about-approach .section-heading {
  margin-bottom: 48px;
}

.about-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.about-approach__principle {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-approach__principle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 56px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--accent), var(--cta));
  transform: translateX(-50%);
}

.about-approach__principle:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 180, 216, 0.24);
  box-shadow:
    0 18px 36px rgba(0, 180, 216, 0.1),
    var(--shadow-sm);
}

.about-approach__principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 8px auto 18px;
  border-radius: 16px;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.1);
}

.about-approach__principle-icon svg {
  width: 24px;
  height: 24px;
}

.about-approach__principle h3 {
  margin: 0 0 10px;
  color: var(--foreground);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 800;
}

.about-approach__principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.about-approach__narrative {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 4px;
  padding: 32px 36px 26px;
  border: 1px solid rgba(0, 180, 216, 0.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.72) 100%);
  box-shadow: var(--shadow-sm);
}

.about-approach__narrative::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 56px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--accent), var(--cta));
}

.about-approach__narrative-title {
  margin: 0 0 22px;
  color: var(--foreground);
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
}

.about-approach__narrative-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.about-approach__narrative-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.about-approach__narrative-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 180, 216, 0.14);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-approach__narrative-meta span[aria-hidden="true"] {
  color: rgba(0, 180, 216, 0.45);
}

.about-approach__narrative--solo {
  max-width: none;
}

.company-project-card {
  display: grid;
  gap: 0;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.company-project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.28);
  box-shadow:
    0 18px 40px rgba(0, 180, 216, 0.14),
    0 8px 18px rgba(15, 23, 42, 0.06);
}

.company-project-card img,
.about-work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.company-project-card__cta {
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.company-project-detail__image {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-sm);
}

.timeline-item strong {
  display: block;
  margin-top: 8px;
  color: var(--foreground);
  font-size: 1.15rem;
  font-weight: 800;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--cta));
  font-weight: 800;
}

.news-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.news-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.news-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 800;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.news-card__link {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
}

.blog-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-sm);
}

.blog-toolbar__filters {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.blog-toolbar__label {
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 800;
}

.blog-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  background: #ffffff;
  color: var(--foreground);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 184, 166, 0.45);
}

.blog-filter-btn.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--cta));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.18);
}

.blog-search-field {
  display: grid;
  gap: 10px;
}

.blog-search-field span {
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 800;
}

.blog-search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 16px;
  background: #ffffff;
  color: var(--foreground);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-field input:focus {
  border-color: rgba(20, 184, 166, 0.7);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.blog-results-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  margin-bottom: 24px;
}

.blog-featured__content,
.blog-featured__side {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.blog-featured__content h3,
.blog-featured__side h4 {
  margin: 0;
  color: var(--foreground);
  font-weight: 800;
}

.blog-featured__content h3 {
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  line-height: 1.15;
}

.blog-featured__content p,
.blog-featured__side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.blog-featured__content {
  display: grid;
  gap: 18px;
}

.blog-featured__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-featured__stats span,
.blog-featured__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-featured__side {
  display: grid;
  align-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.news-grid--blog {
  margin-top: 12px;
}

.blog-empty-state {
  margin-top: 24px;
  padding: 28px;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.blog-empty-state h3 {
  margin: 0 0 10px;
  color: var(--foreground);
  font-size: 1.2rem;
  font-weight: 800;
}

.blog-empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.article-cover {
  margin: 28px 0 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.article-cover img {
  display: block;
  width: 100%;
  max-height: min(52vh, 520px);
  object-fit: cover;
}

.article-hero__backlink {
  margin-top: 28px;
}

.article-backlink-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.article-content,
.article-panel {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.article-content {
  padding: 0;
  overflow: hidden;
}

.article-content__head {
  padding: 28px 34px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.article-content__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-content__head h2 {
  margin: 0 0 22px;
  color: var(--foreground);
  font-size: 1.45rem;
  line-height: 1.3;
  font-weight: 800;
}

.article-content__body {
  padding: 28px 34px 34px;
}

.article-content__body p,
.article-content p,
.article-content li {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.article-content h2 {
  margin: 36px 0 14px;
  color: var(--foreground);
  font-size: 1.55rem;
  line-height: 1.3;
  font-weight: 800;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content ul,
.article-content ol {
  margin: 0;
  padding-left: 20px;
}

.article-content li + li {
  margin-top: 8px;
}

.article-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.article-panel {
  padding: 22px;
}

.article-panel--summary {
  background:
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.08), transparent 42%),
    #ffffff;
}

.article-panel--related {
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.07), transparent 42%),
    #ffffff;
}

.article-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.article-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.12);
  flex-shrink: 0;
}

.article-panel__icon svg {
  width: 20px;
  height: 20px;
}

.article-panel h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 1.02rem;
  font-weight: 800;
}

.article-panel p,
.article-panel li {
  color: var(--muted);
  line-height: 1.75;
}

.article-panel ul {
  margin: 0;
  padding-left: 18px;
}

.article-panel li + li {
  margin-top: 8px;
}

.article-panel__meta {
  display: grid;
  gap: 0;
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.article-meta-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-meta-row:first-child {
  padding-top: 0;
}

.article-meta-row strong {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.article-meta-row span {
  color: var(--foreground);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}

.article-meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.12);
  font-size: 0.82rem !important;
  font-weight: 800 !important;
}

.article-related-links {
  display: grid;
  gap: 10px;
}

.article-related-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.85);
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.article-related-link span {
  flex: 1;
}

.article-related-link svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.article-related-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 180, 216, 0.45);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 180, 216, 0.1);
}

.article-related-link:hover svg {
  transform: translateX(2px);
}

.article-related-links a {
  color: var(--foreground);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-layout--single {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}

.contact-card h3 {
  margin-bottom: 20px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-item {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.contact-item strong,
.contact-item span,
.contact-item a {
  display: block;
}

.contact-item strong {
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-item span,
.contact-item a {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-item a {
  color: var(--accent);
  font-weight: 700;
}

.contact-item a:hover {
  color: #0096c7;
}

.contact-item__values {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.contact-item__values a,
.contact-item__values span {
  margin-top: 0;
}

.contact-item__detail {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-item--wide {
  grid-column: 1 / -1;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field label {
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--foreground);
  background: var(--surface);
  font: inherit;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .blog-featured,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .page-news .blog-filter-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .page-news .blog-filter-buttons::-webkit-scrollbar {
    display: none;
  }

  .page-news .blog-filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .page-hero__meta,
  .content-grid--4,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-list--grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .page-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-main {
    padding-top: 72px;
  }

  .page-hero {
    padding: 56px 0 72px;
  }

  .page-hero__content h1 {
    font-size: clamp(2.2rem, 8vw, 3.3rem);
  }

  .page-hero__content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__actions .btn {
    width: 100%;
  }

  .page-hero__meta,
  .content-grid,
  .content-grid--3,
  .content-grid--4,
  .news-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured__content,
  .blog-featured__side,
  .article-content,
  .article-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .page-post .article-content {
    padding: 0;
  }

  .page-post .article-content__head {
    padding: 22px 22px 0;
  }

  .page-post .article-content__body {
    padding: 22px;
  }

  .page-post .article-panel {
    padding: 20px;
  }

  .page-post .article-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .page-post .article-meta-row span {
    text-align: left;
  }

  .page-post .article-backlink-btn {
    width: 100%;
  }

  .blog-toolbar {
    padding: 20px;
    border-radius: 20px;
  }

  .page-news .blog-toolbar {
    gap: 16px;
    padding: 16px;
    margin-bottom: 20px;
  }

  .page-news .blog-toolbar__label {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .page-news .blog-filter-btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .page-news .blog-filter-btn:hover {
    transform: none;
  }

  .page-news .blog-search-field input {
    min-height: 48px;
    font-size: 16px;
  }

  .page-news .blog-results-meta {
    font-size: 0.88rem;
  }

  .page-hero__meta-card,
  .content-card,
  .news-card,
  .timeline-item {
    padding: 24px;
  }

  .contact-item {
    padding: 20px;
  }

  .legal-modal__dialog {
    padding: 24px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-medium) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero-copy {
  max-width: 640px;
}

.hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.9vw, 1.25rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-product-scene {
  position: relative;
  width: 100%;
  min-height: 720px;
  padding: 36px 0 28px 24px;
  isolation: isolate;
}

.hero-scene-stage {
  position: relative;
  min-height: 720px;
  z-index: 1;
}

.hero-scene-tabs {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  display: flex;
  gap: 10px;
}

.hero-scene-tab {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.hero-scene-tab.is-active {
  border-color: rgba(20, 184, 166, 0.55);
  color: #ffffff;
  background: rgba(20, 184, 166, 0.2);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-glow-a {
  top: 18%;
  right: 15%;
  width: 220px;
  height: 220px;
  background: rgba(56, 189, 248, 0.26);
}

.hero-glow-b {
  left: 12%;
  bottom: 12%;
  width: 260px;
  height: 260px;
  background: rgba(21, 101, 192, 0.34);
}

.scene-panel {
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.scene-desktop,
.scene-mobile,
.scene-marketing {
  pointer-events: none;
}

.hero-product-scene[data-active-scene="desktop"] .scene-desktop {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.scene-mobile,
.scene-marketing {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate3d(42px, 22px, 0) scale(0.92);
  filter: blur(6px);
}

.hero-product-scene[data-active-scene="mobile"] .scene-desktop,
.hero-product-scene[data-active-scene="marketing"] .scene-desktop {
  opacity: 0;
  transform: translate3d(-48px, -16px, 0) scale(0.95);
  filter: blur(5px);
}

.hero-product-scene[data-active-scene="mobile"] .scene-mobile {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.hero-product-scene[data-active-scene="marketing"] .scene-marketing {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.product-window {
  position: absolute;
  inset: 42px -132px 16px 68px;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow: 0 30px 80px rgba(5, 15, 40, 0.28);
  backdrop-filter: blur(14px);
}

.product-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 20, 43, 0.26);
}

.window-dots {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.window-dots span:nth-child(1) {
  background: var(--cta);
}

.window-dots span:nth-child(2) {
  background: #ffd166;
}

.window-dots span:nth-child(3) {
  background: #56f39a;
}

.window-title,
.window-pill {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
}

.window-pill {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.product-window-body {
  display: grid;
  grid-template-columns: 90px 1fr;
  min-height: 560px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 24px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 20, 43, 0.26);
}

.sidebar-brand {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #52c6ff);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 180, 216, 0.25);
}

.sidebar-stack {
  display: grid;
  gap: 12px;
  width: 100%;
}

.sidebar-item {
  display: block;
  padding: 10px 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
}

.sidebar-item.is-active {
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.product-main {
  padding: 24px;
}

.product-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.product-topbar h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 800;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
}

.top-metric-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 200px;
}

.metric-chip {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-chip strong,
.metric-chip span {
  display: block;
}

.metric-chip strong {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
}

.metric-chip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 22px;
}

.analytics-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.analytics-card strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
}

.analytics-card-primary {
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.16), rgba(255, 255, 255, 0.06));
}

.chart-bars {
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 10px;
  height: 132px;
  margin-top: 20px;
}

.chart-bars span {
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #53d5ff, #00b4d8);
}

.progress-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.progress-list div {
  display: grid;
  gap: 8px;
}

.progress-list label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
}

.progress-list b {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(83, 213, 255, 0.95), rgba(0, 180, 216, 0.55));
}

.crm-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.crm-column {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.crm-column-title {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.crm-ticket {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(7, 24, 50, 0.48);
}

.crm-ticket strong,
.crm-ticket span {
  display: block;
}

.crm-ticket strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.crm-ticket span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  line-height: 1.5;
}

.accent-ticket {
  background: rgba(0, 180, 216, 0.12);
}

.success-ticket {
  background: rgba(16, 185, 129, 0.14);
}

.hero-float-card {
  position: absolute;
  z-index: 6;
  width: 216px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(8, 18, 43, 0.26);
  backdrop-filter: blur(14px);
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-product-scene[data-active-scene="desktop"] .hero-float-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-float-card h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 700;
}

.float-card-left {
  top: 146px;
  left: -18px;
  right: auto;
  bottom: auto;
}

.float-card-right {
  top: auto;
  right: -198px;
  bottom: 132px;
}

.float-card-top-left {
  top: 54px;
  left: auto;
  right: -220px;
}

.float-card-bottom-right {
  right: auto;
  left: -8px;
  bottom: 26px;
}

.hero-product-scene[data-active-scene="mobile"] .hero-float-card,
.hero-product-scene[data-active-scene="marketing"] .hero-float-card {
  opacity: 0;
  pointer-events: none;
}

.hero-product-scene[data-active-scene="mobile"] .float-card-left,
.hero-product-scene[data-active-scene="marketing"] .float-card-left {
  transform: translate(-18px, -18px);
}

.hero-product-scene[data-active-scene="mobile"] .float-card-right,
.hero-product-scene[data-active-scene="marketing"] .float-card-right {
  transform: translate(18px, 18px);
}

.hero-product-scene[data-active-scene="mobile"] .float-card-top-left,
.hero-product-scene[data-active-scene="marketing"] .float-card-top-left {
  transform: translate(-12px, -18px);
}

.hero-product-scene[data-active-scene="mobile"] .float-card-bottom-right,
.hero-product-scene[data-active-scene="marketing"] .float-card-bottom-right {
  transform: translate(12px, 18px);
}

.marketing-window {
  position: absolute;
  inset: 42px -138px 16px 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow: 0 30px 80px rgba(5, 15, 40, 0.28);
  backdrop-filter: blur(14px);
}

.marketing-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 20, 43, 0.26);
}

.marketing-window-body {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 560px;
}

.marketing-sidebar {
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 20, 43, 0.22);
}

.marketing-sidebar h3 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 800;
}

.marketing-sidebar p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.marketing-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.marketing-kpi-card,
.marketing-card,
.marketing-service-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.marketing-kpi-card {
  padding: 14px;
  border-radius: 18px;
}

.marketing-kpi-card span,
.marketing-kpi-card strong {
  display: block;
}

.marketing-kpi-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.marketing-kpi-card strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
}

.marketing-main {
  padding: 26px;
}

.marketing-row {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.marketing-card {
  padding: 20px;
  border-radius: 22px;
}

.marketing-card strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
}

.marketing-card-primary {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.16), rgba(255, 255, 255, 0.06));
}

.marketing-bars {
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 20px;
}

.marketing-bars span {
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #22c1b2, #38bdf8);
}

.marketing-stat-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.marketing-stat-list div {
  display: grid;
  gap: 8px;
}

.marketing-stat-list label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
}

.marketing-stat-list b {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 193, 178, 0.92), rgba(56, 189, 248, 0.6));
}

.marketing-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.marketing-service-card:last-child {
  grid-column: 1 / -1;
}

.marketing-service-card {
  padding: 18px;
  border-radius: 20px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 24, 50, 0.36);
  font-size: 0.72rem;
  font-weight: 700;
}

.marketing-service-card strong,
.marketing-service-card p {
  display: block;
}

.marketing-service-card strong {
  margin-top: 12px;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 700;
}

.marketing-service-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.6;
}

.pipeline-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.pipeline-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 16px;
  background: rgba(7, 24, 50, 0.4);
}

.pipeline-list strong,
.pipeline-list span {
  color: #ffffff;
  font-size: 0.78rem;
}

.pipeline-list span {
  color: rgba(255, 255, 255, 0.68);
}

.task-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.task-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.79rem;
  line-height: 1.5;
}

.task-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #56f39a;
}

.phone-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.phone-device {
  position: relative;
  width: 310px;
  height: 620px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(8, 21, 44, 0.85), rgba(9, 28, 58, 0.78));
  box-shadow: 0 26px 70px rgba(6, 17, 38, 0.34);
  transform: translateX(28px);
}

.phone-device::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 122px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: #071426;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 26px 14px 16px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.phone-app-header h3 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 800;
}

.phone-app-header p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.phone-summary-card,
.phone-mini-card,
.phone-list-card,
.phone-floating-chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.phone-summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
}

.phone-summary-card span,
.phone-mini-card span,
.phone-list-head span,
.phone-action-item span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.phone-summary-card strong,
.phone-mini-card strong,
.phone-action-item strong {
  display: block;
  color: #ffffff;
  font-weight: 800;
}

.phone-summary-card strong {
  margin-top: 6px;
  font-size: 1.2rem;
}

.phone-summary-card b {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(20, 184, 166, 0.2);
  font-size: 0.8rem;
}

.phone-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.phone-mini-card {
  padding: 14px;
  border-radius: 20px;
}

.phone-mini-card strong {
  margin-top: 6px;
  font-size: 1.15rem;
}

.phone-list-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
}

.phone-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phone-list-head b {
  padding: 7px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(56, 189, 248, 0.16);
  font-size: 0.76rem;
}

.phone-action-item {
  padding: 14px;
  border-radius: 18px;
  background: rgba(7, 24, 50, 0.34);
}

.phone-action-item strong {
  font-size: 0.92rem;
}

.phone-action-item span {
  margin-top: 6px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.phone-bottom-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: auto;
  padding: 12px;
  border-radius: 18px;
  background: rgba(7, 24, 50, 0.42);
}

.phone-bottom-bar span {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-bottom-bar span.is-active {
  background: linear-gradient(90deg, #14b8a6, #38bdf8);
}

.phone-floating-chip {
  position: absolute;
  z-index: 1;
  width: 186px;
  padding: 14px 14px 14px;
  border-radius: 18px;
  color: #ffffff;
}

.phone-floating-chip .mini-label {
  padding: 5px 9px;
  font-size: 0.66rem;
}

.phone-floating-chip h4 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 800;
}

.phone-chip-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.phone-chip-list li {
  position: relative;
  padding: 9px 10px 9px 22px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(7, 24, 50, 0.36);
  font-size: 0.7rem;
  line-height: 1.45;
}

.phone-chip-list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #56f39a;
}

.chip-left {
  top: 142px;
  left: 18px;
}

.chip-right {
  right: -4px;
  bottom: 126px;
}

.chip-top-right {
  top: 62px;
  right: -26px;
}

.chip-bottom-left {
  left: -8px;
  bottom: 28px;
}

.comparison-grid,
.feature-grid,
.testimonial-grid,
.calculator-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.comparison {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.comparison-split__bridge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, #2563eb);
  color: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-md);
}

.comparison-split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-split__bridge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-pane {
  display: grid;
  align-content: start;
  gap: 28px;
  min-height: 100%;
  padding: 36px 32px 40px;
}

.comparison-pane--bad {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%), #111827;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-pane--good {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--foreground);
}

.comparison-pane__head {
  display: grid;
  gap: 10px;
}

.comparison-pane__badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-pane--bad .comparison-pane__badge {
  background: rgba(239, 68, 68, 0.16);
  color: #fca5a5;
}

.comparison-pane--good .comparison-pane__badge {
  background: rgba(20, 184, 166, 0.14);
  color: #0f766e;
}

.comparison-pane__head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  letter-spacing: -0.03em;
}

.comparison-pane--bad .comparison-pane__head h3 {
  color: #ffffff;
}

.comparison-pane--good .comparison-pane__head h3 {
  color: var(--primary);
}

.comparison-pane__list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-pane__list li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.comparison-pane--bad .comparison-pane__list li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.comparison-pane__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.comparison-pane__list p {
  margin: 0;
  line-height: 1.75;
}

.comparison-pane--bad .comparison-pane__list p {
  color: rgba(255, 255, 255, 0.82);
}

.comparison-pane--good .comparison-pane__list p {
  color: var(--foreground);
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.comparison-card-bad {
  background: rgba(239, 68, 68, 0.10);
  border-color: rgba(239, 68, 68, 0.22);
}

.comparison-card-good {
  background: rgba(16, 185, 129, 0.10);
  border-color: rgba(16, 185, 129, 0.22);
}

.comparison-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 24px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 1.7rem;
  font-weight: 800;
}

.comparison-card-bad h3 {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.comparison-card-good h3 {
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.comparison-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.65;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.icon-badge svg {
  width: 100%;
  height: 100%;
}

.icon-danger {
  color: #ef4444;
}

.icon-success {
  color: var(--accent);
}

.stats-band {
  padding: 80px 0;
  color: #ffffff;
  background: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.stat-card {
  text-align: center;
}

.stat-value {
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  font-weight: 800;
}

.stat-label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  font-weight: 700;
}

.stat-copy {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 28px 26px 30px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow:
    0 14px 34px rgba(0, 180, 216, 0.2),
    0 6px 18px rgba(0, 180, 216, 0.14),
    0 4px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.22);
  box-shadow:
    0 22px 46px rgba(0, 180, 216, 0.28),
    0 10px 28px rgba(0, 180, 216, 0.18),
    0 6px 14px rgba(15, 23, 42, 0.05);
}

.feature-card__head {
  display: flex;
  align-items: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 180, 216, 0.08);
  color: var(--accent);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3,
.process-step__card h3,
.step-card h3,
.calculator-panel h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-card p,
.process-step__card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.section-link {
  margin-top: 40px;
  text-align: center;
}

.section-link a {
  color: var(--accent);
  font-weight: 700;
}

.project-showcase {
  margin-top: 48px;
}

.project-showcase__header {
  margin-bottom: 22px;
  text-align: center;
}

.project-showcase__header h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 1.7rem;
  font-weight: 800;
}

.project-marquee {
  position: relative;
  overflow: hidden;
}

.project-track {
  display: flex;
  width: max-content;
  opacity: 0;
  animation: project-scroll 56s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: opacity 0.2s ease;
}

.project-track.is-ready {
  opacity: 1;
}

.project-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.project-marquee:hover .project-track {
  animation-play-state: paused;
}

.project-card {
  width: min(520px, calc(100vw - 56px));
  flex: 0 0 min(520px, calc(100vw - 56px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid #dbe7ef;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff, #eef4f8);
  box-shadow: var(--shadow-sm);
}

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(180deg, #f8fbff, #eef4f8);
}

.project-card__tags {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 36px);
  pointer-events: none;
}

.project-card__tag {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 16, 32, 0.72);
  box-shadow: 0 10px 24px rgba(7, 16, 32, 0.16);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border: 1px solid rgba(214, 226, 236, 0.9);
  border-radius: 12px;
  background: #ffffff;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.project-card__media--crm {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.35), transparent 35%),
    linear-gradient(135deg, #0d2b5c, #1565c0);
}

.project-card__media--mobile {
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.4), transparent 35%),
    linear-gradient(135deg, #0a1628, #0f9f90);
}

.project-card__media--automation {
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.32), transparent 35%),
    linear-gradient(135deg, #0a1628, #14b8a6);
}

.project-card__media--ads {
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.28), transparent 35%),
    linear-gradient(135deg, #0d2b5c, #14b8a6);
}

.project-card__body {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.project-card__body h4 {
  margin: 0;
  color: var(--foreground);
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
}

.project-showcase--grid .project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-showcase--carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.project-carousel__viewport {
  overflow: hidden;
  min-width: 0;
}

.project-carousel__track {
  display: flex;
  width: max-content;
  gap: 0;
  opacity: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: opacity 0.2s ease;
}

.project-carousel__track.is-ready {
  opacity: 1;
}

.project-carousel__group {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  padding-right: 24px;
}

.project-carousel__nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #ffffff;
  color: var(--foreground);
  box-shadow:
    0 10px 24px rgba(0, 180, 216, 0.12),
    0 4px 10px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.project-carousel__nav:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(0, 180, 216, 0.28);
  box-shadow:
    0 14px 30px rgba(0, 180, 216, 0.18),
    0 6px 14px rgba(15, 23, 42, 0.05);
}

.project-carousel__nav:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.project-carousel__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-showcase--grid .project-card,
.project-showcase--carousel .project-card {
  width: auto;
  min-height: 390px;
  flex: initial;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  perspective: 1400px;
}

.project-showcase--carousel .project-card {
  width: min(420px, calc(100vw - 140px));
  flex: 0 0 min(420px, calc(100vw - 140px));
}

.project-card--flip .project-card__inner {
  position: relative;
  min-height: 390px;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.project-card--flip:hover .project-card__inner,
.project-card--flip:focus-within .project-card__inner,
.project-card--flip:focus .project-card__inner,
.project-card--flip.is-flipped .project-card__inner {
  transform: rotateY(180deg);
}

.project-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.project-card__face--front {
  padding: 12px;
  border: 1px solid #dbe7ef;
  background: linear-gradient(180deg, #f8fbff, #eef4f8);
  box-shadow: var(--shadow-sm);
}

.project-showcase--grid .project-card__face--front .project-card__media,
.project-showcase--carousel .project-card__face--front .project-card__media {
  flex: 1 1 auto;
}

.project-card__face--back {
  justify-content: center;
  gap: 14px;
  padding: 28px 26px;
  border: 1px solid rgba(223, 232, 241, 0.92);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  color: var(--foreground);
  transform: rotateY(180deg);
}

.project-card__face--back h4 {
  margin: 0;
  color: var(--foreground);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
}

.project-card__face--back p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-card__detail-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.project-card__detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--foreground);
  font-size: 0.94rem;
  line-height: 1.55;
}

.project-card__detail-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.666% + 36px);
  right: calc(16.666% + 36px);
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 180, 216, 0.18), rgba(0, 180, 216, 0.55), rgba(0, 180, 216, 0.18));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.process-step__indicator {
  display: grid;
  place-items: center;
}

.process-step__number {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 3px solid rgba(0, 180, 216, 0.32);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  box-shadow:
    0 14px 34px rgba(0, 180, 216, 0.2),
    0 6px 18px rgba(0, 180, 216, 0.14);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.process-step__card {
  width: 100%;
  display: grid;
  gap: 12px;
  padding: 26px 24px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow:
    0 14px 34px rgba(0, 180, 216, 0.16),
    0 6px 18px rgba(0, 180, 216, 0.1),
    0 4px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-step__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.22);
  box-shadow:
    0 22px 46px rgba(0, 180, 216, 0.24),
    0 10px 28px rgba(0, 180, 216, 0.16),
    0 6px 14px rgba(15, 23, 42, 0.05);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 24px 24px 8px;
  text-align: center;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -9px;
  width: 18px;
  border-top: 2px dashed var(--border);
}

.step-number,
.step-icon,
.avatar {
  display: grid;
  place-items: center;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.1);
  font-size: 1.7rem;
  font-weight: 800;
}

.step-icon {
  width: 34px;
  height: 34px;
  margin: 16px auto 0;
  color: rgba(0, 180, 216, 0.7);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.calculator-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.calculator-panel,
.result-card,
.testimonial-card,
.partner-card {
  border: 1px solid var(--border);
  background: #ffffff;
}

.calculator-panel {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.range-field + .range-field {
  margin-top: 28px;
}

.range-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.range-field strong {
  color: var(--accent);
  font-size: 1.15rem;
}

.range-field input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.result-card {
  padding: 28px 20px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.result-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 2.35rem);
  font-weight: 800;
}

.result-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-card {
  width: min(360px, calc(100vw - 56px));
  flex: 0 0 min(360px, calc(100vw - 56px));
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: testimonial-scroll 28s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.testimonial-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.quote-mark {
  color: rgba(0, 180, 216, 0.22);
  font-size: 3.8rem;
  line-height: 1;
}

.testimonial-card p {
  margin: 8px 0 0;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.1);
  font-size: 1.15rem;
  font-weight: 800;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes project-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .project-track {
    animation: none;
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px 14px;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: var(--shadow-sm);
}

.partner-logo-card {
  overflow: hidden;
}

.partner-logo {
  width: 100%;
  max-width: 132px;
  max-height: 48px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.9;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.partner-card:hover .partner-logo {
  filter: grayscale(1) contrast(1.15);
  opacity: 1;
}

.partners-note {
  margin: 32px 0 0;
  color: var(--muted);
  text-align: center;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-medium) 100%);
}

.cta-inner {
  max-width: 880px;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(6, 20, 43, 0.22);
  backdrop-filter: blur(10px);
  text-align: center;
  color: #ffffff;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
}

.cta-inner p {
  margin: 16px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
  line-height: 1.8;
}

.cta-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.cta-phone {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.site-footer {
  color: #ffffff;
  background: var(--primary);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 64px 0 48px;
}

.footer-brand-link img {
  filter: none;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-size: 0.95rem;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.footer-contact a,
.footer-grid > div:not(.footer-brand) a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-link-button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-grid > div:not(.footer-brand) a:hover,
.footer-link-button:hover {
  color: #ffffff;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-grid h3 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

body.modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal__dialog {
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.legal-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.legal-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 180, 216, 0.1);
  font-size: 0.74rem;
  font-weight: 700;
}

.legal-modal__header h3 {
  margin: 10px 0 0;
  color: var(--foreground);
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 800;
}

.legal-modal__close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--foreground);
  background: var(--surface);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.legal-modal__content h4 {
  margin: 20px 0 10px;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 700;
}

.legal-modal__content p,
.legal-modal__content li {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.legal-modal__content p {
  margin: 0;
}

.legal-modal__content ul {
  margin: 0;
  padding-left: 20px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 50%;
  width: max-content;
  max-width: 230px;
  padding: 10px 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  background: #ffffff;
  color: var(--foreground);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%) translateX(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.whatsapp-fab__tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(226, 232, 240, 0.95);
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-fab:hover .whatsapp-fab__tooltip,
.whatsapp-fab:focus-visible .whatsapp-fab__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(50%) translateX(0);
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 768px) {
  .whatsapp-fab__tooltip {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 640px;
    margin-top: 8px;
  }

  .hero-product-scene {
    min-height: 640px;
    padding-left: 0;
    overflow: hidden;
  }

  .hero-scene-stage {
    min-height: 640px;
  }

  .product-window {
    inset: 88px 24px 24px;
  }

  .marketing-window {
    inset: 88px 24px 24px;
  }

  .float-card-left {
    left: 6px;
    top: 150px;
    bottom: auto;
  }

  .float-card-right {
    right: -48px;
    top: auto;
    bottom: 118px;
  }

  .float-card-top-left {
    left: auto;
    right: -44px;
    top: 42px;
  }

  .float-card-bottom-right {
    right: auto;
    left: 12px;
    bottom: 22px;
  }

}

@media (max-width: 1024px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu .btn {
    margin-top: 6px;
    width: 100%;
    min-height: 44px;
    height: auto;
    padding: 12px 18px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .comparison-grid,
  .feature-grid,
  .testimonial-grid,
  .footer-grid,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .about-approach__grid {
    grid-template-columns: 1fr;
  }

  .comparison-split {
    grid-template-columns: 1fr;
  }

  .comparison-split__bridge {
    top: auto;
    bottom: calc(50% - 28px);
    transform: translate(-50%, 50%) rotate(90deg);
  }

  .comparison-pane {
    padding: 28px 22px 32px;
  }

  .comparison-pane--bad {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-window-body {
    grid-template-columns: 1fr;
  }

  .marketing-window-body,
  .marketing-row,
  .marketing-services {
    grid-template-columns: 1fr;
  }

  .marketing-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .product-sidebar {
    flex-direction: row;
    justify-content: space-between;
    padding: 18px 20px;
  }

  .sidebar-stack {
    grid-auto-flow: column;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-topbar,
  .analytics-grid,
  .crm-board {
    grid-template-columns: 1fr;
  }

  .product-topbar {
    display: grid;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 18px;
  }

  .process-steps::before {
    top: 24px;
    bottom: 24px;
    left: 18px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.18), rgba(0, 180, 216, 0.55), rgba(0, 180, 216, 0.18));
  }

  .process-step {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "indicator card";
    align-items: start;
    gap: 18px;
    padding: 0 0 28px 18px;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .process-step__indicator {
    grid-area: indicator;
  }

  .process-step__number {
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
  }

  .process-step__card {
    grid-area: card;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-float-card {
    display: none;
  }

}

@media (max-width: 768px) {
  .section,
  .stats-band,
  .cta-section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 6.5vw, 2.75rem);
  }

  .section-heading p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-approach__narrative-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-approach__narrative {
    padding: 24px 22px 20px;
  }

  .about-approach__narrative::before {
    left: 22px;
  }

  .about-approach__narrative-inner p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .about-approach__narrative-title {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }

  .about-approach__narrative-meta {
    gap: 8px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-layout {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 24px;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .comparison-pane {
    padding: 24px 20px 28px;
    gap: 20px;
  }

  .comparison-pane__list {
    gap: 14px;
  }

  .comparison-pane__list li {
    padding-bottom: 14px;
  }

  .comparison-pane__list p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .comparison-split__bridge {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .stat-value {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .stat-label {
    font-size: 1rem;
  }

  .stat-copy {
    font-size: 0.88rem;
  }

  .feature-grid {
    gap: 16px;
  }

  .feature-card {
    padding: 22px 20px 24px;
  }

  .process-step__card {
    padding: 22px 20px;
  }

  .process-step__number {
    width: 52px;
    height: 52px;
    font-size: 1.05rem;
  }

  .section-surface:has(.project-showcase--carousel) > .container {
    width: 100%;
  }

  .section-surface:has(.project-showcase--carousel) .section-heading {
    width: min(calc(100% - 32px), var(--container));
    margin-left: auto;
    margin-right: auto;
  }

  .project-showcase--carousel {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .project-carousel__nav {
    display: none;
  }

  .project-showcase--carousel .project-card {
    width: min(300px, calc(100vw - 40px));
    flex: 0 0 min(300px, calc(100vw - 40px));
    min-height: 340px;
  }

  .project-showcase--carousel .project-card--flip .project-card__inner {
    min-height: 340px;
  }

  .project-card__face--back {
    padding: 22px 18px;
  }

  .testimonial-card {
    width: min(300px, calc(100vw - 40px));
    flex: 0 0 min(300px, calc(100vw - 40px));
    padding: 24px;
  }

  .quote-mark {
    font-size: 3rem;
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-card {
    min-height: 78px;
    padding: 14px 10px;
  }

  .partner-logo {
    max-width: 108px;
    max-height: 40px;
  }

  .partners-note {
    margin-top: 24px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .cta-inner h2 {
    font-size: clamp(1.65rem, 6vw, 2.4rem);
  }

  .product-window {
    position: relative;
    inset: auto;
    min-height: auto;
  }

  .marketing-window {
    position: relative;
    inset: auto;
    min-height: auto;
  }

  .product-main {
    padding: 22px;
  }

  .marketing-main,
  .marketing-sidebar {
    padding: 22px;
  }

  .sidebar-stack {
    gap: 8px;
    overflow-x: auto;
  }

  .hero-scene-tabs {
    top: 0;
    right: 0;
  }

  .phone-device {
    width: 280px;
    height: 560px;
    transform: translateX(14px);
  }

  .chip-left {
    left: -6px;
  }

  .chip-right {
    right: -8px;
  }

  .chip-top-right {
    right: -18px;
  }

  .chip-bottom-left {
    left: -12px;
  }

  .calculator-results,
  .comparison-card,
  .feature-card,
  .testimonial-card,
  .calculator-panel,
  .result-card {
    padding: 24px;
  }

  .footer-grid {
    padding: 56px 0 40px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section,
  .stats-band,
  .cta-section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.2rem);
  }

  .section-heading p {
    margin-top: 12px;
    font-size: 0.95rem;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand img {
    height: 48px;
  }

  .mobile-menu nav {
    padding: 0 12px 14px;
  }

  .mobile-menu .btn {
    width: 100%;
  }

  .mobile-menu a {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-layout {
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .hero-copy {
    margin: 0;
    max-width: none;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 10vw, 2.75rem);
    line-height: 1.08;
  }

  .hero-copy p {
    margin: 18px 0 0;
    max-width: none;
    font-size: 0.98rem;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .comparison-split {
    border-radius: 20px;
  }

  .comparison-pane {
    padding: 20px 16px 24px;
    gap: 16px;
  }

  .comparison-pane__head h3 {
    font-size: 1.15rem;
  }

  .comparison-pane__list p {
    font-size: 0.92rem;
  }

  .comparison-split__bridge {
    width: 44px;
    height: 44px;
  }

  .comparison-split__bridge svg {
    width: 20px;
    height: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-card {
    padding: 0 8px;
  }

  .feature-card h3,
  .process-step__card h3 {
    font-size: 1.08rem;
  }

  .feature-card p,
  .process-step__card p {
    font-size: 0.92rem;
  }

  .process-steps {
    padding-left: 14px;
  }

  .process-steps::before {
    left: 14px;
  }

  .process-step {
    gap: 14px;
    padding: 0 0 22px 14px;
  }

  .process-step__number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .process-step__card {
    padding: 18px 16px;
  }

  .cta-inner {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .cta-inner p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }

  .cta-actions .btn {
    width: 100%;
    min-height: 48px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .product-window-top {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .marketing-window-top {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .product-main {
    padding: 18px;
  }

  .marketing-main,
  .marketing-sidebar {
    padding: 18px;
  }

  .hero-scene-tabs {
    position: static;
    justify-content: center;
    margin-bottom: 18px;
  }

  .page-hero {
    padding: 44px 0 56px;
  }

  .page-hero__content h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .page-hero__content p {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .page-hero__meta {
    gap: 12px;
    margin-top: 28px;
  }

  .page-hero__meta-card,
  .content-card,
  .news-card,
  .timeline-item {
    padding: 20px;
    border-radius: 20px;
  }

  .content-card h3,
  .news-card h3 {
    font-size: 1.2rem;
  }

  .project-showcase--carousel .project-card {
    width: min(280px, calc(100vw - 32px));
    flex: 0 0 min(280px, calc(100vw - 32px));
    min-height: 320px;
  }

  .project-showcase--carousel .project-card--flip .project-card__inner {
    min-height: 320px;
  }

  .project-card__face--back {
    padding: 20px 16px;
    gap: 10px;
  }

  .project-card__face--back h4 {
    font-size: 1.05rem;
  }

  .project-card__face--back p,
  .project-card__detail-list li {
    font-size: 0.88rem;
  }

  .project-card {
    width: min(280px, calc(100vw - 32px));
    flex: 0 0 min(280px, calc(100vw - 32px));
    padding: 10px;
  }

  .project-card__media {
    padding: 8px;
  }

  .project-card__tags {
    top: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    gap: 6px;
  }

  .project-card__tag {
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .project-card__body {
    margin-top: 8px;
    padding: 2px 4px 0;
  }

  .project-card__body h4 {
    font-size: 1rem;
  }

  .testimonial-card {
    width: min(280px, calc(100vw - 32px));
    flex: 0 0 min(280px, calc(100vw - 32px));
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .news-card__meta {
    gap: 8px;
    flex-wrap: wrap;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .partner-card {
    min-height: 72px;
    padding: 12px 8px;
    border-radius: 14px;
  }

  .partner-logo {
    max-width: 96px;
    max-height: 36px;
  }

  .partners-note {
    font-size: 0.88rem;
  }

  .footer-bottom p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .contact-item {
    padding: 18px;
  }

  .form-field input,
  .form-field textarea {
    padding: 13px 14px;
  }

  .legal-modal {
    padding: 14px;
  }

  .legal-modal__dialog {
    padding: 18px;
    border-radius: 20px;
  }

  .legal-modal__header {
    gap: 12px;
  }

  .legal-modal__header h3 {
    font-size: 1.35rem;
  }

  .phone-floating-chip {
    display: none;
  }

  .top-metric-chips,
  .crm-board,
  .marketing-kpi-grid,
  .marketing-services {
    grid-template-columns: 1fr;
  }

  .sidebar-stack {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 1180px) {
  .project-showcase--grid .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .project-showcase--grid .project-grid {
    grid-template-columns: 1fr;
  }

  .project-showcase--grid .project-card,
  .project-card--flip .project-card__inner {
    min-height: 360px;
  }

  .project-card__face--back {
    padding: 24px 20px;
  }
}

/* Hakkımızda sayfası — responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-about .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .page-about .content-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .page-about .content-grid:not(.content-grid--3) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-about .section {
    padding: 48px 0;
  }

  .page-about .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .page-about .section-heading h2 {
    font-size: clamp(1.55rem, 6.2vw, 2.2rem);
    line-height: 1.2;
  }

  .page-about .section-heading p {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .page-about .about-approach .section-heading {
    text-align: center;
  }

  .page-about .about-approach__grid {
    gap: 14px;
  }

  .page-about .about-approach__principle {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .page-about .about-approach__principle-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .page-about .about-approach__principle h3 {
    font-size: 1rem;
  }

  .page-about .about-approach__principle p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .page-about .about-approach__narrative {
    margin-top: 6px;
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .page-about .about-approach__narrative::before {
    left: 18px;
    width: 48px;
  }

  .page-about .about-approach__narrative-title {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .page-about .about-approach__narrative-inner {
    gap: 16px;
  }

  .page-about .about-approach__narrative-inner p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .page-about .about-approach__narrative-meta {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 18px;
    padding-top: 16px;
    font-size: 0.76rem;
    text-align: center;
  }

  .page-about .about-approach__narrative-meta span[aria-hidden="true"] {
    display: none;
  }

  .page-about .feature-grid {
    gap: 16px;
  }

  .page-about .feature-card {
    padding: 22px 20px 24px;
    border-radius: 20px;
  }

  .page-about .feature-card h3 {
    font-size: 1.05rem;
  }

  .page-about .feature-card p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .page-about .feature-icon {
    width: 46px;
    height: 46px;
  }

  .page-about .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .page-about .content-grid,
  .page-about .content-grid--3 {
    gap: 16px;
  }

  .page-about .content-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .page-about .content-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }

  .page-about .content-card p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .page-about .company-project-card img {
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 14px;
  }

  .page-about .company-project-card__cta {
    margin-top: 12px;
    font-size: 0.88rem;
  }

  .page-about .process-steps {
    padding-left: 14px;
  }

  .page-about .process-steps::before {
    left: 14px;
  }

  .page-about .process-step {
    gap: 14px;
    margin-bottom: 18px;
  }

  .page-about .process-step__number {
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
  }

  .page-about .process-step__card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .page-about .process-step__card h3 {
    font-size: 1.02rem;
  }

  .page-about .process-step__card p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .page-about .cta-section {
    padding: 48px 0;
  }

  .page-about .cta-inner {
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
  }

  .page-about .cta-inner h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.25;
  }

  .page-about .cta-inner p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .page-about .cta-actions .btn {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .page-about .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .page-about .page-hero {
    padding: 36px 0 48px;
  }

  .page-about .page-hero__content h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.35rem);
    line-height: 1.12;
  }

  .page-about .page-hero__content p {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .page-about .page-hero__actions {
    gap: 10px;
    margin-top: 24px;
  }

  .page-about .page-hero__actions .btn {
    min-height: 48px;
    padding: 13px 18px;
    font-size: 0.95rem;
  }

  .page-about .page-hero__meta {
    gap: 10px;
    margin-top: 22px;
  }

  .page-about .page-hero__meta-card {
    padding: 16px;
    border-radius: 18px;
  }

  .page-about .page-hero__meta-card strong {
    font-size: 1.2rem;
  }

  .page-about .page-hero__meta-card span {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .page-about .section {
    padding: 40px 0;
  }

  .page-about .section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .page-about .eyebrow {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .page-about .about-approach__principle {
    padding: 20px 16px 18px;
  }

  .page-about .about-approach__narrative {
    padding: 20px 16px 16px;
  }

  .page-about .feature-card,
  .page-about .content-card,
  .page-about .process-step__card {
    padding: 18px 16px;
  }

  .page-news .blog-toolbar {
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .page-news .blog-filter-buttons {
    gap: 6px;
    margin: 0 -2px;
    padding: 0 2px 6px;
  }

  .page-news .blog-filter-btn {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .page-news .blog-search-field span {
    font-size: 0.82rem;
  }

  .page-news .blog-search-field input {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
  }

  .page-news .blog-results-meta {
    font-size: 0.84rem;
    text-align: center;
  }

  .page-post .article-content__head h2 {
    font-size: 1.28rem;
  }

  .page-post .article-content__body p {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .page-post .article-related-link {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
}

@media (hover: none) {
  .page-about .about-approach__principle:hover,
  .page-about .feature-card:hover,
  .page-about .company-project-card:hover,
  .page-about .process-step__card:hover {
    transform: none;
  }
}
