:root {
  --ink: #07091a;
  --muted: #40506a;
  --line: #e2e8f0;
  --purple: #8c1dff;
  --pink: #d827ff;
  --cyan: #08c9e8;
  --dark: #080b1e;
  --dark-2: #111827;
  --white: #ffffff;
  --shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.glow-purple {
  top: 80px;
  left: -80px;
  background: rgba(177, 105, 255, 0.24);
}

.glow-cyan {
  top: 80px;
  right: -40px;
  background: rgba(35, 221, 232, 0.28);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(22px);
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 136px;
  display: flex;
  align-items: center;
}

.logo img {
  width: 112px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #273449;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav .active {
  color: var(--purple);
}

.quote-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  background: var(--dark);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 22px rgba(8, 11, 30, 0.2);
}

.quote-button {
  min-width: 102px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--dark);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

main {
  max-width: 100%;
  overflow: hidden;
  padding-top: 98px;
}

.hero {
  width: min(1260px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 78px 0 42px;
}

.pill,
.mini-pill,
.soft-label,
.cyan-label,
.ads-label,
.dark-soft-label,
.dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 950;
}

.pill {
  margin-bottom: 38px;
  padding: 10px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
  color: #7b12f4;
  font-size: 14px;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(52px, 5.3vw, 82px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 1000;
}

.gradient,
.hero h1 span,
.browser-body h2 span,
.stats strong,
.label,
.ai-sales-copy h2 span,
.ads-section h2 span {
  background: linear-gradient(90deg, var(--purple), var(--pink), #7aa7ff, var(--cyan));
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.primary-button,
.secondary-button,
.light-button,
.outline-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 31px;
  border-radius: 17px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  color: #fff;
  box-shadow: 0 14px 26px rgba(8, 201, 232, 0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.light-button {
  background: #fff;
  color: var(--ink);
}

.outline-dark-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.primary-button:hover,
.secondary-button:hover,
.quote-button:hover,
.dark-button:hover,
.light-button:hover,
.outline-dark-button:hover {
  transform: translateY(-2px);
}

.browser-card {
  min-height: 650px;
  overflow: hidden;
  border-radius: 38px 38px 0 0;
  background: linear-gradient(145deg, #201842, #092b3d);
  box-shadow: 0 34px 80px rgba(8, 11, 30, 0.22);
  padding: 26px 26px 0;
}

.browser-top {
  height: 58px;
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.dots {
  display: flex;
  gap: 9px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red {
  background: #ff5f57;
}

.yellow {
  background: #febc2e;
}

.green {
  background: #28d77d;
}

.browser-body {
  min-height: 560px;
  padding: 40px;
  background: linear-gradient(150deg, #12162a, #11293a);
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-pill {
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
}

.browser-body h2 {
  margin: 42px 0 0;
  max-width: 430px;
  font-size: 48px;
  line-height: 1.25;
}

.browser-body h2 span {
  display: block;
}

.browser-body p {
  max-width: 470px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.65;
}

.browser-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.browser-features div {
  min-height: 98px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.browser-features strong,
.browser-features small {
  display: block;
}

.browser-features strong {
  font-size: 14px;
}

.browser-features small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.stats {
  width: min(1230px, calc(100% - 56px));
  margin: -18px auto 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats article {
  min-height: 126px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

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

.stats strong {
  font-size: 32px;
  line-height: 1;
  font-weight: 1000;
}

.stats span {
  margin-top: 14px;
  color: #2e3c53;
  font-weight: 900;
}

.section,
.projects-strip,
.process-section,
.ads-section,
.faq-section {
  width: min(1230px, calc(100% - 56px));
  margin: 0 auto;
  padding: 76px 0 94px;
  scroll-margin-top: 118px;
}

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

.section-head {
  max-width: 760px;
}

.section h2,
.projects-strip h2,
.center-head h2,
.ai-sales h2,
.crm-section h2,
.ads-section h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 1000;
}

.section-head p,
.center-head p,
.crm-section p,
.ads-section p,
.ai-sales-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.service-grid,
.project-grid,
.why-grid,
.process-grid,
.case-grid,
.testimonial-grid,
.blog-grid,
.faq-grid {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.hero > *,
.ai-sales > *,
.crm-section > *,
.ads-grid > *,
.ba-grid > *,
.service-category > *,
.ai-flow-panel > *,
.contact-section > *,
.pricing-card,
.premium-card,
.reference-card,
.blog-page-card {
  min-width: 0;
}

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

.project-grid,
.case-grid,
.testimonial-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article,
.project-grid article,
.why-grid article,
.process-grid article,
.case-grid article,
.testimonial-grid article,
.blog-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.service-grid article {
  min-height: 316px;
  padding: 36px 28px;
  border-radius: 24px;
}

.card-icon,
.number-icon,
.person span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 12px 24px rgba(8, 201, 232, 0.18);
  color: #fff;
  font-weight: 1000;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.28;
}

article p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid a,
.project-grid a,
.case-grid a,
.blog-grid a {
  display: inline-block;
  margin-top: 8px;
  color: var(--purple);
  font-weight: 950;
}

.project-grid article,
.case-grid article,
.blog-grid article {
  overflow: hidden;
  border-radius: 24px;
}

.project-grid article,
.case-grid article {
  padding-bottom: 28px;
}

.project-cover {
  height: 208px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  background: #243249;
  color: rgba(255, 255, 255, 0.52);
  font-size: 20px;
  font-weight: 1000;
  text-align: center;
}

.project-grid h3,
.project-grid p,
.project-grid a,
.case-grid h3,
.case-grid p,
.case-grid a {
  margin-left: 24px;
  margin-right: 24px;
}

.ai-sales {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 98px max(28px, calc((100% - 1230px) / 2));
  background: radial-gradient(circle at 10% 30%, rgba(140, 29, 255, 0.26), transparent 32%), linear-gradient(120deg, #07091a, #031629);
  color: #fff;
  scroll-margin-top: 98px;
}

.dark-pill {
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #32e7ff;
  font-size: 14px;
}

.ai-sales h2 {
  max-width: 620px;
  margin-top: 34px;
  font-size: clamp(48px, 5vw, 68px);
}

.ai-sales-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.chat-panel {
  padding: 20px;
  border-radius: 36px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.chat-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.chat-head b {
  padding: 16px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
}

.chat-message {
  margin: 14px 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #13203a;
  box-shadow: 0 2px 7px rgba(15, 23, 42, 0.09);
}

.chat-message.user {
  margin-left: 50px;
  background: var(--dark);
  color: #fff;
}

.ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 14px;
}

.ai-feature-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 2px 7px rgba(15, 23, 42, 0.09);
}

.ai-feature-grid strong {
  display: inline-flex;
  padding: 10px;
  border-radius: 12px;
  background: #f0ddff;
  color: var(--purple);
  font-size: 13px;
}

.ai-feature-grid h3 {
  margin-top: 18px;
  font-size: 18px;
}

.ai-feature-grid p {
  font-size: 14px;
}

.center-head {
  max-width: 980px;
  margin: 0 auto 58px;
  text-align: center;
}

.soft-label,
.cyan-label,
.ads-label,
.dark-soft-label {
  margin-bottom: 22px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
}

.soft-label {
  background: #f0ddff;
  color: var(--purple);
}

.cyan-label {
  background: #bff8fb;
  color: #087e91;
}

.ads-label {
  background: #ffe7c6;
  color: #cc450e;
}

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

.why-grid article {
  min-height: 300px;
  padding: 32px;
  border-radius: 26px;
}

.process-section {
  background: #f8fafc;
  width: 100%;
  padding-left: max(28px, calc((100% - 1230px) / 2));
  padding-right: max(28px, calc((100% - 1230px) / 2));
}

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

.process-grid article {
  min-height: 164px;
  padding: 28px 24px;
  border-radius: 24px;
}

.process-grid span {
  color: var(--ink);
  font-size: 44px;
  font-weight: 1000;
}

.process-grid h3 {
  margin-top: 16px;
  font-size: 18px;
}

.crm-section {
  width: min(1230px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: 70px;
  padding: 92px 0;
  scroll-margin-top: 118px;
}

.crm-section h2 {
  max-width: 560px;
  margin-top: 24px;
}

.crm-section p {
  max-width: 620px;
  margin-bottom: 30px;
}

.crm-card {
  padding: 26px;
  border: 24px solid var(--dark);
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}

.crm-head,
.lead-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.crm-head b {
  padding: 10px 18px;
  border-radius: 999px;
  background: #cdf9df;
  color: #00934e;
}

.lead-row {
  grid-template-columns: 1fr 1fr auto;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #14213a;
}

.lead-row b {
  color: var(--purple);
}

.before-after {
  padding: 96px max(28px, calc((100% - 1230px) / 2));
  background: radial-gradient(circle at 10% 20%, rgba(140, 29, 255, 0.24), transparent 30%), #07091a;
  color: #fff;
  scroll-margin-top: 98px;
}

.center-head.dark p {
  color: rgba(255, 255, 255, 0.75);
}

.dark-soft-label {
  background: rgba(255, 255, 255, 0.1);
  color: #39e8ff;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  gap: 42px;
  align-items: center;
}

.before-card,
.after-card {
  padding: 24px;
  border-radius: 34px;
}

.before-card {
  border: 1px solid rgba(255, 80, 110, 0.26);
  background: rgba(255, 80, 110, 0.08);
}

.after-card {
  background: #fff;
  color: var(--ink);
}

.ba-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.ba-head span {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 80, 110, 0.18);
  color: #ffb4c0;
  font-weight: 900;
}

.fake-browser,
.modern-panel {
  padding: 22px;
  border-radius: 26px;
  background: #111;
}

.line {
  height: 16px;
  margin-top: 16px;
  border-radius: 999px;
  background: #303030;
}

.line.short {
  width: 28%;
  height: 32px;
}

.line.medium {
  width: 68%;
}

.mini-stats,
.score-grid,
.tag-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.mini-stats b,
.score-grid b {
  padding: 18px;
  border-radius: 14px;
  background: #050505;
  color: #fff;
  font-size: 28px;
}

.fake-browser ul {
  margin-top: 26px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 75, 105, 0.18);
  color: #ffd4dc;
}

.ba-arrow {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #42e8ff;
}

.ba-arrow span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  font-size: 34px;
}

.ba-arrow strong {
  font-size: 38px;
}

.modern-panel {
  background: linear-gradient(140deg, #111530, #14364a);
  color: #fff;
}

.bar {
  width: 178px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.modern-panel h3 {
  margin-top: 38px;
  font-size: 32px;
}

.modern-panel h3 span {
  display: block;
  color: #c08cff;
}

.score-grid b {
  background: rgba(255, 255, 255, 0.12);
}

.tag-row {
  grid-template-columns: repeat(3, 1fr);
}

.tag-row span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 950;
}

.ads-section h2 span {
  display: block;
  background: linear-gradient(90deg, #ff7a18, #ff3d20);
  background-clip: text;
  color: transparent;
}

.ads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ads-list {
  display: grid;
  gap: 24px;
}

.ads-list article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.ads-dashboard {
  padding: 32px;
  border-radius: 34px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 96, 30, 0.2), transparent 35%), #08091a;
  color: #fff;
}

.dash-head,
.dash-metrics,
.keyword-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dash-head span {
  color: #ffb65c;
  font-weight: 950;
}

.dash-head b {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 192, 125, 0.16);
  color: #37f0a5;
}

.ads-dashboard h3 {
  margin-top: 18px;
  font-size: 32px;
}

.dash-metrics b {
  width: 50%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 34px;
}

.keyword-box {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.keyword-box p {
  color: rgba(255, 255, 255, 0.55);
}

.keyword-box div {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.keyword-box small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
}

.keyword-box b {
  color: #ffb65c;
  font-size: 22px;
}

.case-grid article {
  padding: 32px;
}

.case-grid .project-cover {
  border-radius: 24px;
}

.testimonials {
  padding-top: 110px;
}

.testimonial-grid article,
.blog-grid article,
.faq-grid article {
  padding: 34px;
  border-radius: 26px;
}

.stars {
  color: #ffb000;
  font-size: 20px;
}

.testimonial-grid article > p {
  min-height: 120px;
  font-size: 17px;
}

.person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.person span {
  margin-bottom: 0;
}

.person small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.blog-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f0ddff;
  color: var(--purple);
  font-size: 13px;
  font-weight: 1000;
}

.faq-section {
  width: 100%;
  padding-left: max(28px, calc((100% - 1020px) / 2));
  padding-right: max(28px, calc((100% - 1020px) / 2));
}

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

.faq-grid article {
  min-height: 176px;
}

.cta-section {
  width: min(1100px, calc(100% - 56px));
  margin: 60px auto 104px;
  padding: 58px 42px;
  border-radius: 34px;
  background: radial-gradient(circle at 10% 10%, rgba(140, 29, 255, 0.34), transparent 38%), linear-gradient(120deg, #170b35, #063344);
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(8, 11, 30, 0.18);
}

.cta-section h2 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 54px);
  line-height: 1.1;
}

.cta-section p {
  max-width: 720px;
  margin: 22px auto 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.footer {
  padding: 80px max(28px, calc((100% - 1230px) / 2)) 42px;
  background: radial-gradient(circle at 85% 80%, rgba(8, 201, 232, 0.2), transparent 34%), #07091a;
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 70px;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer img {
  width: 174px;
  height: 174px;
  object-fit: contain;
  margin-bottom: 28px;
}

.footer h3 {
  color: #fff;
  font-size: 20px;
}

.footer a,
.footer span {
  display: block;
  margin-top: 18px;
  font-weight: 850;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  font-weight: 850;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.services-hero {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0 88px;
  text-align: center;
}

.services-hero .pill {
  margin-bottom: 42px;
}

.services-hero h1 {
  margin: 0;
  font-size: clamp(56px, 6vw, 86px);
  line-height: 1.04;
  font-weight: 1000;
}

.services-hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--purple), var(--pink), #8aa5ff);
  background-clip: text;
  color: transparent;
}

.services-hero p {
  max-width: 700px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.service-category {
  width: min(1230px, calc(100% - 56px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 0.75fr 1.65fr;
  gap: 46px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

.service-category-blue::before {
  background: linear-gradient(90deg, #05bee2, #2d7dff);
}

.service-category-orange::before {
  background: linear-gradient(90deg, #ff730d, #ff2c4d);
}

.service-category-green::before {
  background: linear-gradient(90deg, #05c57a, #00bfe8);
}

.service-category-indigo::before {
  background: linear-gradient(90deg, #5b5cf6, #00c2a8);
}

.category-copy {
  position: relative;
  z-index: 1;
}

.category-copy > span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
}

.service-category-blue .category-copy > span {
  background: linear-gradient(90deg, #05bee2, #2d7dff);
}

.service-category-orange .category-copy > span {
  background: linear-gradient(90deg, #ff730d, #ff2c4d);
}

.service-category-green .category-copy > span {
  background: linear-gradient(90deg, #05c57a, #00bfe8);
}

.service-category-indigo .category-copy > span {
  background: linear-gradient(90deg, #5b5cf6, #00c2a8);
}

.category-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 1000;
}

.category-copy p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.premium-card-grid {
  display: grid;
  gap: 24px;
}

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

.premium-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  padding: 32px;
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
}

.purple-card {
  background: radial-gradient(circle at 18% 12%, rgba(197, 34, 255, 0.22), transparent 34%), #160727;
}

.blue-card {
  background: radial-gradient(circle at 18% 12%, rgba(0, 191, 232, 0.2), transparent 34%), #06182d;
}

.orange-card {
  background: radial-gradient(circle at 18% 12%, rgba(255, 100, 20, 0.2), transparent 34%), #1c0c16;
}

.green-card {
  background: radial-gradient(circle at 18% 12%, rgba(0, 198, 145, 0.2), transparent 34%), #061b25;
}

.indigo-card {
  background: radial-gradient(circle at 18% 12%, rgba(91, 92, 246, 0.22), transparent 34%), linear-gradient(145deg, #081126, #062a2c);
}

.premium-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.blue-card .premium-icon {
  background: linear-gradient(135deg, #05bee2, #2d7dff);
}

.orange-card .premium-icon {
  background: linear-gradient(135deg, #ff730d, #ff2c4d);
}

.green-card .premium-icon {
  background: linear-gradient(135deg, #05c57a, #00bfe8);
}

.indigo-card .premium-icon {
  background: linear-gradient(135deg, #5b5cf6, #00c2a8);
}

.premium-card h3 {
  max-width: 310px;
  color: #fff;
  font-size: 26px;
}

.premium-card p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.7);
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.card-bottom a {
  color: #fff;
  font-weight: 1000;
  white-space: nowrap;
}

.card-bottom div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
}

.card-bottom span {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 1000;
}

.slider-shell {
  position: relative;
  min-width: 0;
}

.service-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-slider::-webkit-scrollbar {
  display: none;
}

.service-slider .premium-card {
  scroll-snap-align: start;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 64px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 16px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 34px;
  font-weight: 900;
}

.slider-button.prev {
  left: -38px;
}

.slider-button.next {
  right: -38px;
}

.compact-card {
  min-height: 290px;
}

.ai-page-hero {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0 80px;
  text-align: center;
}

.ai-page-hero .pill {
  margin-bottom: 46px;
}

.ai-page-hero h1 {
  margin: 0;
  font-size: clamp(54px, 5.2vw, 78px);
  line-height: 1.05;
  font-weight: 1000;
}

.ai-page-hero h1 span {
  display: block;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--purple), var(--pink), #7aa7ff, var(--cyan));
  background-clip: text;
  color: transparent;
}

.ai-page-hero p {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.ai-system-grid {
  width: min(1230px, calc(100% - 56px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ai-system-card {
  min-height: 470px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.ai-system-card .card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.ai-system-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
}

.ai-system-card p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.info-box {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fafc;
  color: #34445d;
  font-size: 16px;
  line-height: 1.8;
}

.ai-flow-panel {
  width: min(1100px, calc(100% - 56px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 62px;
  align-items: center;
  padding: 56px;
  border-radius: 34px;
  background: radial-gradient(circle at 10% 18%, rgba(140, 29, 255, 0.3), transparent 36%), linear-gradient(120deg, #07091a, #031629);
  color: #fff;
  box-shadow: 0 30px 80px rgba(8, 11, 30, 0.18);
}

.ai-flow-copy h2 {
  margin: 34px 0 0;
  font-size: clamp(44px, 4.6vw, 60px);
  line-height: 1.18;
  font-weight: 1000;
}

.ai-flow-copy h2 span {
  display: block;
  background: linear-gradient(90deg, #c584ff, #8da8ff, #30d9f2);
  background-clip: text;
  color: transparent;
}

.ai-flow-copy p {
  max-width: 520px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.flow-board {
  display: grid;
  gap: 20px;
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  color: var(--ink);
}

.flow-board div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
}

.flow-board span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(8, 201, 232, 0.18);
}

.flow-board strong {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
}

.ai-faq {
  background: transparent;
}

.pricing-hero {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 82px 0 52px;
  text-align: center;
}

.pricing-hero h1 {
  margin: 0;
  font-size: clamp(60px, 6vw, 84px);
  line-height: 1.08;
  font-weight: 1000;
}

.pricing-hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--purple), var(--pink), #7aa7ff, var(--cyan));
  background-clip: text;
  color: transparent;
}

.pricing-hero p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-section {
  width: min(1230px, calc(100% - 56px));
  margin: 0 auto;
  padding: 18px 0 84px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 575px;
  display: flex;
  flex-direction: column;
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.pricing-card.featured {
  border-color: #d69cff;
  box-shadow: 0 0 0 4px rgba(191, 113, 255, 0.18), 0 18px 42px rgba(140, 29, 255, 0.1);
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  min-width: 156px;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
  box-shadow: 0 14px 24px rgba(8, 201, 232, 0.24);
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 26px;
}

.pricing-card > p {
  min-height: 78px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.price {
  margin: 24px 0 28px;
}

.price strong {
  display: block;
  background: linear-gradient(90deg, var(--purple), #8a79ff, var(--cyan));
  background-clip: text;
  color: transparent;
  font-size: clamp(42px, 3.6vw, 52px);
  line-height: 1.05;
  font-weight: 1000;
}

.project-price strong {
  font-size: clamp(38px, 3.6vw, 50px);
}

.price span {
  display: block;
  margin-top: 8px;
  color: #34445d;
  font-size: 13px;
  font-weight: 950;
}

.pricing-card ul {
  display: grid;
  gap: 18px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: #34445d;
  font-weight: 850;
}

.pricing-card li {
  position: relative;
  padding-left: 32px;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0ddff;
  color: var(--purple);
  font-size: 13px;
  font-weight: 1000;
}

.pricing-card .full {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 34px 0 0;
  color: #46566f;
  text-align: center;
  font-weight: 850;
}

.custom-offer {
  width: min(970px, calc(100% - 56px));
  margin: 24px auto 104px;
  padding: 48px 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  text-align: center;
}

.custom-offer h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 42px);
}

.custom-offer p {
  max-width: 680px;
  margin: 22px auto 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.references-hero {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 110px 0 82px;
  text-align: center;
}

.references-hero h1 {
  margin: 0;
  font-size: clamp(58px, 6vw, 78px);
  line-height: 1.06;
  font-weight: 1000;
}

.references-hero p {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.references-section {
  width: min(1230px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 96px;
}

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

.reference-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.reference-cover {
  min-height: 208px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #243249;
  color: rgba(255, 255, 255, 0.52);
  font-size: 20px;
  font-weight: 1000;
  text-align: center;
}

.reference-card h2 {
  margin: 26px 24px 0;
  font-size: 22px;
  line-height: 1.25;
}

.reference-card p {
  min-height: 72px;
  margin: 14px 24px 0;
  color: var(--muted);
  line-height: 1.65;
}

.reference-card a {
  display: inline-block;
  margin: 12px 24px 28px;
  color: var(--purple);
  font-weight: 950;
}

.blog-page-hero {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 112px 0 92px;
  text-align: center;
}

.blog-page-hero h1 {
  margin: 0;
  font-size: clamp(62px, 6vw, 78px);
  line-height: 1.16;
  font-weight: 1000;
}

.blog-page-hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  background-clip: text;
  color: transparent;
}

.blog-page-hero p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.blog-list-section {
  width: min(1230px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 112px;
}

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

.blog-page-card {
  min-height: 294px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(248, 250, 252, 0.88);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.blog-page-card span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f0ddff;
  color: var(--purple);
  font-size: 13px;
  font-weight: 1000;
}

.blog-page-card h2 {
  max-width: 320px;
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.blog-page-card p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-page-card a {
  display: inline-block;
  margin-top: 24px;
  color: var(--purple);
  font-weight: 950;
}

.contact-hero {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 94px 0 86px;
  text-align: center;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(62px, 6vw, 82px);
  line-height: 1.1;
  font-weight: 1000;
}

.contact-hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--purple), var(--pink), #9b78ff);
  background-clip: text;
  color: transparent;
}

.contact-hero p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-section {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto 108px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  min-height: 385px;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.contact-info-card {
  padding: 34px 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.contact-info-card h2,
.contact-form-card h2 {
  margin: 0 0 24px;
  font-size: 26px;
}

.contact-info-card a,
.contact-info-card span {
  display: block;
  margin-top: 14px;
  color: #34445d;
  font-size: 16px;
}

.contact-form-card {
  padding: 34px 32px 32px;
  background: var(--dark);
  color: #fff;
}

.contact-form-card label {
  display: block;
  margin-top: 16px;
}

.contact-form-card label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  outline: none;
  padding: 0 16px;
}

.contact-form-card textarea {
  min-height: 56px;
  resize: vertical;
  padding-top: 17px;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.contact-form-card button {
  width: 100%;
  min-height: 56px;
  margin-top: 16px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 14px;
}

.whatsapp,
.to-top {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 14px 30px rgba(8, 11, 30, 0.22);
}

.whatsapp {
  background: #05c57a;
}

.whatsapp svg {
  width: 30px;
  fill: currentColor;
}

.to-top {
  background: var(--dark);
  font-size: 20px;
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 1160px) {
  .nav {
    gap: 18px;
  }

  .hero,
  .ai-sales,
  .ai-flow-panel,
  .crm-section,
  .ads-grid,
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .browser-card {
    min-height: 540px;
  }

  .service-grid,
  .stats,
  .why-grid,
  .process-grid,
  .footer-grid,
  .pricing-grid,
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    height: 92px;
  }

  main {
    padding-top: 92px;
  }

  .menu-toggle {
    display: block;
  }

  .quote-button {
    display: none;
  }

  .nav {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 28px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 14px 0;
  }

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

  .project-grid,
  .case-grid,
  .testimonial-grid,
  .blog-grid,
  .blog-page-grid,
  .faq-grid,
  .service-category,
  .ai-system-grid,
  .pricing-grid,
  .references-grid,
  .contact-section,
  .ai-feature-grid {
    grid-template-columns: 1fr;
  }

  .premium-card-grid.two {
    grid-template-columns: 1fr;
  }

  .service-slider {
    grid-auto-columns: min(360px, 86vw);
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    min-width: 0;
  }

  .header-inner,
  .hero,
  .section,
  .projects-strip,
  .stats,
  .services-hero,
  .ai-page-hero,
  .ai-system-grid,
  .ai-flow-panel,
  .pricing-hero,
  .pricing-section,
  .custom-offer,
  .references-hero,
  .references-section,
  .blog-page-hero,
  .blog-list-section,
  .contact-hero,
  .contact-section,
  .service-category,
  .crm-section,
  .ads-section,
  .cta-section {
    width: calc(100% - 28px);
  }

  .glow {
    width: 320px;
    height: 320px;
    filter: blur(64px);
  }

  .glow-purple {
    left: -180px;
  }

  .glow-cyan {
    right: -180px;
  }

  .logo {
    width: auto;
  }

  .logo img {
    width: 88px;
    height: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero h1,
  .ai-sales h2 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  .section h2,
  .projects-strip h2,
  .center-head h2,
  .crm-section h2,
  .ads-section h2,
  .services-hero h1,
  .ai-page-hero h1,
  .pricing-hero h1,
  .references-hero h1,
  .blog-page-hero h1,
  .contact-hero h1 {
    overflow-wrap: anywhere;
  }

  .browser-body,
  .chat-panel,
  .crm-card,
  .ads-dashboard {
    padding: 22px;
  }

  .browser-features,
  .service-grid,
  .stats,
  .why-grid,
  .process-grid,
  .footer-grid,
  .premium-card-grid.two,
  .dash-metrics,
  .score-grid,
  .tag-row {
    grid-template-columns: 1fr;
  }

  .service-category {
    padding: 30px 22px;
  }

  .ai-page-hero h1 {
    font-size: 39px;
  }

  .pricing-hero h1 {
    font-size: 42px;
  }

  .references-hero h1 {
    font-size: 42px;
  }

  .blog-page-hero h1 {
    font-size: 42px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .pricing-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .ai-system-card,
  .ai-flow-panel {
    padding: 30px 22px;
  }

  .flow-board {
    padding: 22px;
  }

  .flow-board div {
    grid-template-columns: 1fr;
  }

  .premium-card {
    min-height: 300px;
    padding: 26px;
  }

  .slider-button {
    display: none;
  }

  .lead-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .header-inner,
  .hero,
  .section,
  .projects-strip,
  .stats,
  .services-hero,
  .ai-page-hero,
  .ai-system-grid,
  .ai-flow-panel,
  .pricing-hero,
  .pricing-section,
  .custom-offer,
  .references-hero,
  .references-section,
  .blog-page-hero,
  .blog-list-section,
  .contact-hero,
  .contact-section,
  .service-category,
  .crm-section,
  .ads-section,
  .cta-section {
    width: calc(100% - 20px);
  }

  .hero h1,
  .ai-sales h2 {
    font-size: 38px;
  }

  .section h2,
  .projects-strip h2,
  .center-head h2,
  .crm-section h2,
  .ads-section h2 {
    font-size: 36px;
  }

  .services-hero h1,
  .ai-page-hero h1,
  .pricing-hero h1,
  .references-hero h1,
  .blog-page-hero h1,
  .contact-hero h1 {
    font-size: 38px;
  }

  .hero-actions,
  .cta-section,
  .card-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .light-button,
  .outline-dark-button,
  .dark-button {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    text-align: center;
  }

  .browser-card {
    padding: 18px 18px 0;
  }

  .browser-body,
  .chat-panel,
  .crm-card,
  .ads-dashboard,
  .testimonial-grid article,
  .blog-grid article,
  .faq-grid article,
  .blog-page-card,
  .contact-info-card,
  .contact-form-card {
    padding: 20px;
  }

  .premium-card {
    padding: 22px;
  }

  .floating-actions {
    right: 12px;
    bottom: 14px;
  }

  .whatsapp,
  .to-top {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }
}
