:root {
  color-scheme: light;
  --bg: #fffbeb;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #525252;
  --line: #e5e7eb;
  --accent: #2563eb;
  --accent-2: #f59e0b;
  --success: #16a34a;
}

* {
  box-sizing: border-box;
}

html,
body,
button,
input,
textarea,
select {
  font-family: "PT Sans", Segoe UI, Roboto, Arial, sans-serif;
}

body {
  margin: 0;
  font-family: "PT Sans", Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.site-header,
.site-footer {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--card) 88%, transparent);
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: none;
  margin-top: 2rem;
  padding: .45rem 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.site-footer p {
  margin: 0;
  font-size: .78rem;
  color: #6b7280;
}

.footer-links {
  display: inline-flex;
  gap: .35rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #4b5563;
  border: 1px solid #e5e7eb;
  background: #fafaf9;
  border-radius: 6px;
  padding: .15rem .42rem;
  font-size: .72rem;
}

.site-header .container {
  display: grid;
  gap: .7rem;
  padding: 1rem 0;
}

.header-main {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 1rem;
  align-items: center;
}


/* Base desktop grids */
.mvp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .6rem;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

.ra-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .45rem;
  border-radius: 999px;
  border: 1px solid #d4d4d8;
  background: #fff;
  text-decoration: none;
  color: #374151;
  font-size: .76rem;
  font-weight: 700;
}

.ra-badge img:first-child {
  width: 1rem;
  height: 1rem;
}

.ra-badge img:last-child {
  height: .85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text);
}

.brand-dot {
  width: .6rem;
  height: .6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 12%, transparent);
}

.nav {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.nav-primary {
  justify-content: center;
}

.nav-primary a {
  font-weight: 600;
}

.nav-secondary {
  border-top: 1px solid var(--line);
  padding-top: .55rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .28rem .5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .82rem;
}

.header-contact .phone {
  font-weight: 700;
  color: #0f172a;
}

.header-contact .wa-link {
  text-decoration: none;
  color: #166534;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  border-radius: 999px;
  padding: .2rem .45rem;
  font-weight: 700;
}

.btn-cta {
  text-decoration: none;
  border-radius: 12px;
  padding: .5rem 1rem;
  font-size: .89rem;
  font-weight: 700;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  border: 1px solid #f59e0b;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .94rem;
}

.nav a.active,
.nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.content {
  background: transparent;
  margin-top: 1rem;
  padding: 0 0 1.4rem;
}

.gallery-standalone-content {
  margin-top: 1.6rem;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #1e3a8a 45%, #0ea5e9);
  color: #fff;
  border-radius: 18px;
  padding: 2rem;
  overflow: hidden;
}

.home-hero {
  background: #facc15;
  color: #111827;
  border: 1px solid #f1c40f;
  border-radius: 0;
}

.home-hero-grid {
  display: grid;
  justify-items: center;
}

.hero-copy {
  display: grid;
  gap: .75rem;
  text-align: center;
  max-width: 860px;
}

.home-hero .hero-glow {
  display: none;
}

.home-hero .hero-kicker {
  display: none;
}

.home-hero .hero-subtitle {
  color: #1f2937;
  max-width: 760px;
  margin: .3rem auto 0;
}

.hero-title-accent {
  margin: -.4rem 0 .15rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-title-accent span {
  color: #ca8a04;
}

.hero-mini-badges {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-mini-badges span {
  display: inline-flex;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
  background: #eff6ff;
  border-radius: 999px;
  padding: .2rem .55rem;
  font-size: .82rem;
  font-weight: 700;
}

.hero-approval {
  margin: 0 auto;
  color: #78350f;
  font-weight: 700;
  font-size: .85rem;
  border: 1px solid #fde68a;
  border-radius: 999px;
  background: #fde047;
  width: fit-content;
  padding: .15rem .6rem;
}

.hero-delivery-note {
  margin: 0;
  color: #78350f;
  font-size: .86rem;
}

.trust-strip {
  margin: .2rem 0 .8rem;
  display: flex;
  justify-content: center;
}

.trust-pill {
  border: 1px solid #d1d5db;
  background: #f7f7f2;
  color: #374151;
  border-radius: 999px;
  padding: .32rem .8rem;
  font-size: .85rem;
  font-weight: 600;
}

.social-proof-strip {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.ai-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-proof-strip article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .7rem .8rem;
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
  display: flex;
  flex-direction: column;
  gap: .12rem;
  text-align: center;
}

.home-proof-strip article {
  border-color: #e9d58a;
  background: #f5ecd0;
}

.home-proof-strip article:last-child {
  border-color: #bbd9a8;
  background: #e8f4dc;
}

.social-proof-strip article strong {
  font-size: 1rem;
}

.social-proof-strip article span {
  color: #475569;
  font-size: .86rem;
}

.video-block {
  margin: 1.1rem 0 1.4rem;
  text-align: center;
}

.video-thumb-link {
  position: relative;
  display: inline-block;
  border: 1px solid #e9d58a;
  border-radius: 10px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  text-decoration: none;
}

.video-thumb-link img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, .86);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.video-caption {
  position: absolute;
  left: .65rem;
  bottom: .55rem;
  color: #fff;
  font-size: .82rem;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
}

.home-process {
  margin-top: .4rem;
}

.process-head {
  text-align: center;
  margin: 0 auto .9rem;
}

.process-kicker {
  display: inline-flex;
  border: 1px solid #fde68a;
  background: #fde047;
  color: #78350f;
  border-radius: 999px;
  font-size: .72rem;
  padding: .08rem .45rem;
  font-weight: 700;
}

.process-head h2 {
  margin: .35rem 0 .1rem;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
}

.process-head p {
  margin: 0;
  color: #374151;
}

.process-deadline {
  display: block;
  margin-top: .25rem;
  color: #ca8a04;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .55rem;
}

.process-card {
  border: 1px solid #e9d58a;
  background: #f4ebca;
  border-radius: 10px;
  padding: .7rem;
  display: grid;
  gap: .45rem;
}

.process-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #ca8a04;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
}

.process-card h3 {
  margin: 0;
  font-size: .92rem;
  line-height: 1.2;
}

.process-card p {
  margin: 0;
  color: #4b5563;
  font-size: .8rem;
}

.process-time {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #fcd34d;
  border-radius: 999px;
  padding: .08rem .4rem;
  color: #78350f;
  font-size: .72rem;
}

.home-contract-teaser {
  margin: 1.1rem 0;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 1.1rem;
}

.contract-head {
  text-align: center;
}

.contract-kicker {
  display: inline-flex;
  border: 1px solid #93c5fd;
  color: #1d4ed8;
  background: #dbeafe;
  border-radius: 999px;
  padding: .16rem .55rem;
  font-size: .8rem;
  font-weight: 700;
}

.contract-highlight {
  background: #2563eb;
  color: #fff;
  padding: 0 .22rem;
}

.contract-head h2 {
  margin: .55rem 0 .1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contract-head p {
  margin: .5rem auto 0;
  color: #374151;
  max-width: 700px;
}

.contract-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.contract-card {
  border: 1px solid #f5d96b;
  background: #f9fafb;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.18);
}

.contract-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 0 auto .45rem;
  font-size: 1.1rem;
}

.contract-icon-blue {
  color: #2563eb;
  background: #dbeafe;
}

.contract-icon-green {
  color: #16a34a;
  background: #dcfce7;
}

.contract-icon-purple {
  color: #9333ea;
  background: #f3e8ff;
}

.contract-card h3 {
  margin: 0 0 .35rem;
  text-align: center;
  font-size: 1.1rem;
}

.contract-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.contract-card li {
  margin: .22rem 0;
  color: #374151;
  font-size: .92rem;
  padding-left: 1.2rem;
  position: relative;
}

.contract-card li::before {
  content: '◉';
  position: absolute;
  left: 0;
  top: .05rem;
  color: #22c55e;
  font-size: .78rem;
}

.contract-cta-wrap {
  margin-top: 1rem;
  text-align: center;
}

.contract-cta {
  display: inline-flex;
  text-decoration: none;
  border: 1px solid #7c3aed;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: .55rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
}

.contract-cta-wrap p {
  margin: .55rem 0 0;
  color: #4b5563;
  font-size: .95rem;
}

.home-mvp-block,
.home-software-types,
.home-client-fit,
.home-guarantees,
.home-cloud,
.home-cases,
.home-testimonials,
.home-lead-block {
  margin: 1rem 0;
  padding: 1.05rem;
  border-radius: 10px;
  border: 1px solid rgba(234, 179, 8, .16);
  background: rgba(255, 255, 255, .45);
}

.mvp-head,
.software-head,
.guarantees-head,
.cloud-head,
.cases-head,
.testimonials-head {
  text-align: center;
}

.mvp-kicker,
.software-kicker,
.guarantees-kicker,
.cloud-kicker,
.testimonials-kicker {
  display: inline-flex;
  border: 1px solid #fde68a;
  background: #fef3c7;
  color: #92400e;
  border-radius: 999px;
  padding: .1rem .5rem;
  font-size: .74rem;
  font-weight: 700;
}

.mvp-head h2,
.software-head h2,
.guarantees-head h2,
.cloud-head h2,
.cases-head h2,
.testimonials-head h2 {
  margin: .45rem 0 .15rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.mvp-head p,
.software-head p,
.guarantees-head p,
.cloud-head p,
.cases-head p,
.testimonials-head p {
  margin: 0 auto;
  max-width: 760px;
  color: #374151;
}

.mvp-grid {
  margin-top: .85rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
}

.mvp-card {
  border: 1px solid #f5d96b;
  border-radius: 12px;
  background: #f9f6eb;
  padding: .75rem;
}

.mvp-card-highlight {
  border-color: #facc15;
  box-shadow: 0 6px 18px rgba(250, 204, 21, .18);
}

.mvp-icon,
.software-icon {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  color: #ca8a04;
  font-size: .86rem;
}

.mvp-card h3,
.software-card h3 {
  margin: .35rem 0 .25rem;
  font-size: 1rem;
  line-height: 1.25;
}

.mvp-card p,
.software-card p {
  margin: 0;
  color: #4b5563;
  font-size: .86rem;
}

.mvp-cta {
  margin-top: .8rem;
  border: 1px solid #facc15;
  border-radius: 12px;
  background: #f9f3d8;
  padding: .8rem;
  text-align: center;
}

.mvp-cta h3 {
  margin: 0;
  font-size: 1.35rem;
}

.mvp-cta p {
  margin: .35rem 0 .6rem;
}

.mvp-cta-actions {
  display: flex;
  justify-content: center;
  gap: .45rem;
  flex-wrap: wrap;
}

.mvp-btn-primary,
.mvp-btn-ghost {
  text-decoration: none;
  border-radius: 10px;
  padding: .42rem .8rem;
  font-weight: 700;
  font-size: .82rem;
}

.mvp-btn-primary {
  background: #eab308;
  color: #111827;
  border: 1px solid #ca8a04;
}

.mvp-btn-ghost {
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
}

.software-grid {
  margin-top: .85rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .6rem;
}

.software-card {
  border: 1px solid #f5e6b3;
  border-radius: 12px;
  padding: .7rem;
  background: #f9f6eb;
}

.software-card-highlight {
  border-color: #facc15;
}

.home-client-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  background: transparent;
  border: 0;
  padding: 0;
}

.fit-panel {
  border: 1px solid;
  border-radius: 10px;
  padding: .85rem;
}

.fit-panel h3 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
}

.fit-panel ul {
  margin: 0;
  padding-left: 1rem;
}

.fit-panel li {
  margin: .18rem 0;
  font-size: .84rem;
}

.fit-panel-ok {
  background: #ecfdf3;
  border-color: #86efac;
}

.fit-panel-no {
  background: #fef2f2;
  border-color: #fca5a5;
}

.guarantees-grid {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
}

.guarantee-card {
  border: 1px solid #f5e6b3;
  border-radius: 12px;
  padding: .8rem;
  background: #f9f6eb;
}

.guarantee-card h3 {
  margin: 0 0 .3rem;
}

.guarantee-mini-cta {
  display: inline-flex;
  margin-top: .5rem;
  text-decoration: none;
  border: 1px solid #facc15;
  border-radius: 999px;
  padding: .2rem .55rem;
  font-size: .78rem;
}

.guarantees-bottom {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}

.guarantees-includes,
.guarantees-promise {
  border: 1px solid #f5e6b3;
  border-radius: 12px;
  padding: .8rem;
  background: #f9f6eb;
}

.guarantees-includes ul,
.guarantees-promise ul {
  margin: .35rem 0 0;
  padding-left: 1rem;
}

.cloud-grid {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: .7rem;
}

.cloud-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.cloud-card,
.cloud-cta {
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background: #eff6ff;
  padding: .72rem;
}

.cloud-card h3 {
  margin: 0 0 .25rem;
}

.cloud-cta a {
  display: inline-flex;
  margin-top: .45rem;
  text-decoration: none;
  border: 1px solid #eab308;
  border-radius: 9px;
  background: #facc15;
  color: #111827;
  padding: .35rem .7rem;
  font-weight: 700;
}

.cloud-metrics {
  margin-top: .75rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
}

.cloud-metrics article {
  text-align: center;
}

.cloud-metrics strong {
  display: block;
  color: #2563eb;
  font-size: 1.6rem;
}

.cases-grid {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

.case-card {
  border: 1px solid #f5e6b3;
  border-radius: 12px;
  background: #f9f6eb;
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  display: block;
}

.case-body {
  padding: .7rem;
}

.case-body h3 {
  margin: 0 0 .3rem;
}

.case-body p {
  margin: .25rem 0;
  font-size: .84rem;
}

.testimonials-grid {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.testimonial-card {
  border: 1px solid #f5e6b3;
  border-radius: 12px;
  background: #f9f6eb;
  padding: .9rem;
}

.testimonial-card p {
  margin: 0 0 .55rem;
}

.testimonial-card span {
  display: block;
  color: #92400e;
  font-size: .85rem;
}

.home-lead-block {
  background: #facc15;
  border-color: #eab308;
  text-align: center;
}

.lead-pill {
  display: inline-flex;
  border: 1px solid #22c55e;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  padding: .16rem .55rem;
  font-size: .74rem;
  font-weight: 700;
}

.lead-card {
  margin: .65rem auto 0;
  max-width: 720px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
  padding: .95rem;
  text-align: left;
}

.lead-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: #fde047;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lead-card h3 {
  margin: .45rem 0 .2rem;
  font-size: 2rem;
  color: #a16207;
}

.lead-benefits {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #4b5563;
}

.lead-form {
  margin-top: .65rem;
  display: grid;
  gap: .5rem;
}

.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.lead-form label {
  display: grid;
  gap: .15rem;
  font-size: .82rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: .45rem .55rem;
  font: inherit;
}

.lead-submit {
  border: 1px solid #eab308;
  background: #facc15;
  color: #111827;
  border-radius: 10px;
  padding: .5rem .8rem;
  font-weight: 700;
}

.lead-security,
.lead-footnote {
  margin: .6rem 0 0;
  font-size: .83rem;
  color: #4b5563;
  text-align: center;
}

.ai-hero {
  background:
    radial-gradient(circle at 15% 88%, rgba(168, 85, 247, .18), transparent 36%),
    radial-gradient(circle at 92% 12%, rgba(99, 102, 241, .22), transparent 40%),
    #f6f2df;
  color: #0f172a;
  border: 1px solid #efe2a6;
  text-align: center;
}

.ai-hero,
.ai-process,
.ai-types,
.ai-benefits,
.ai-ideal,
.ai-not-ideal,
.ai-cases,
.ai-final-cta {
  line-height: 1.45;
}

.ai-mini-badges span {
  background: #e6efff;
  color: #2563eb;
  border-color: #bfdbfe;
}

.ai-mini-badges span:nth-child(2) {
  background: #f3e8ff;
  color: #7c3aed;
  border-color: #d8b4fe;
}

.ai-mini-badges span:nth-child(3) {
  background: #dcfce7;
  color: #15803d;
  border-color: #86efac;
}

.ai-mini-secondary span {
  background: #fffef5;
  color: #3f3f46;
  border-color: #f3e6b0;
}

.hero-subheading {
  margin: .35rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.25;
}

.ai-hero-stats {
  margin-top: .85rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ai-hero-stats span {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: .22rem 0;
  font-size: 1rem;
  color: #57534e;
}

.ai-hero .hero-subtitle,
.ai-hero .hero-subheading {
  color: #1f2937;
}

.ai-hero h1 {
  margin: .45rem 0 .2rem;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .98;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #2563eb, #7c3aed 58%, #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ai-hero .hero-subheading {
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
  margin-top: .55rem;
}

.ai-hero .hero-subtitle {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.55;
}

.ai-hero .hero-actions {
  justify-content: center;
  gap: 1rem;
}

.ai-hero .btn-primary {
  background: linear-gradient(135deg, #2563eb, #9333ea);
  color: #fff;
  border-color: #7c3aed;
  border-radius: 14px;
  padding: .65rem 1.9rem;
  font-size: 1.15rem;
}

.ai-hero .btn-ghost {
  border-color: #93c5fd;
  color: #1d4ed8;
  border-radius: 14px;
  padding: .62rem 1.7rem;
  font-size: 1.15rem;
}

.ai-strip-cards {
  margin: 1rem 0 .55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}

.ai-strip-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  padding: 1rem .85rem;
  text-align: center;
}

.ai-strip-card strong {
  display: block;
  font-size: 2.3rem;
  color: #2563eb;
}

.ai-strip-card span,
.ai-strip-card small {
  display: block;
  line-height: 1.3;
}

.ai-strip-blue { background: #eef2ff; border-color: #bfdbfe; }
.ai-strip-amber { background: #fffbeb; border-color: #fcd34d; }
.ai-strip-green { background: #ecfdf5; border-color: #86efac; }

.ai-strip-notes {
  margin: 0 0 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: #166534;
}

.ai-strip-notes span {
  font-size: .95rem;
}

.ai-head {
  text-align: center;
  margin-bottom: 1rem;
}

.ai-head .hero-kicker {
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
  color: #1d4ed8;
  background: #fde047;
  border: 1px solid #facc15;
  border-radius: 999px;
  display: inline-flex;
  padding: .1rem .55rem;
}

.ai-head h2 {
  margin: .35rem 0 .2rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.ai-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #475569;
}

.ai-process,
.ai-types,
.ai-benefits,
.ai-ideal,
.ai-not-ideal,
.ai-cases {
  background: #fffcf0;
  border: 1px solid #f3e6b0;
  border-radius: 16px;
  padding: 1.15rem;
  margin: 1.1rem 0;
}

.ai-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
}

.ai-process-card {
  background: #fff;
  border: 1px solid #f3e6b0;
  border-radius: 14px;
  padding: .95rem .8rem;
  position: relative;
}

.ai-process-card::after {
  content: "→";
  position: absolute;
  right: -.45rem;
  top: 50%;
  transform: translateY(-50%);
  color: #facc15;
  font-weight: 700;
}

.ai-process-grid .ai-process-card:last-child::after {
  display: none;
}

.ai-step-pill {
  display: inline-flex;
  border: 1px solid #facc15;
  border-radius: 999px;
  font-size: .74rem;
  padding: .06rem .45rem;
  font-weight: 700;
}

.ai-process-card h3 { margin: .5rem 0 .3rem; }
.ai-process-card ul { margin: .45rem 0 0; padding-left: 1rem; line-height: 1.5; }
.ai-process-foot { text-align: center; margin-top: .7rem; }

.ai-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

.ai-type-card {
  background: #fff;
  border: 1px solid #f3e6b0;
  border-radius: 12px;
  padding: .8rem;
  position: relative;
}

.ai-type-popular { border-color: #93c5fd; background: #eff6ff; }

.ai-tag-popular {
  position: absolute;
  top: -.45rem;
  left: .65rem;
  background: #facc15;
  border: 1px solid #eab308;
  border-radius: 999px;
  font-size: .7rem;
  padding: .04rem .4rem;
}

.ai-type-card h3 { margin: .35rem 0; font-size: 1rem; }
.ai-type-card p { margin: 0 0 .35rem; font-size: .9rem; }
.ai-type-card ul { margin: 0 0 .45rem; padding-left: 1rem; font-size: .88rem; line-height: 1.45; }
.ai-type-card strong { display: block; color: #ca8a04; margin-bottom: .4rem; }
.ai-type-card a {
  display: flex;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #eab308;
  background: #facc15;
  color: #111827;
  border-radius: 8px;
  padding: .34rem .55rem;
  font-weight: 700;
}

.ai-custom-card {
  margin-top: .75rem;
  border: 1px dashed #facc15;
  border-radius: 12px;
  background: #fff;
  padding: .75rem;
  text-align: center;
}

.ai-custom-card a {
  text-decoration: none;
  border: 1px solid #facc15;
  border-radius: 999px;
  padding: .2rem .6rem;
  display: inline-flex;
}

.ai-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

.ai-benefit-card {
  background: #fff;
  border: 1px solid #f3e6b0;
  border-radius: 12px;
  padding: .85rem .75rem;
  text-align: center;
}

.ai-benefit-card h3 { margin: 0 0 .25rem; font-size: 1rem; }
.ai-benefit-card p { margin: 0; font-size: .86rem; line-height: 1.45; }
.ai-benefit-card small { display: block; margin-top: .3rem; color: #ca8a04; }

.ai-before-after {
  margin-top: .75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
}

.ai-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.ai-ba-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .65rem;
}

.ai-ba-before { border-color: #fca5a5; background: #fff1f2; }
.ai-ba-after { border-color: #86efac; background: #ecfdf5; }

.ai-roi {
  margin-top: .75rem;
  text-align: center;
  border: 1px solid #facc15;
  border-radius: 12px;
  background: #fff;
  padding: .8rem;
}

.ai-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
}

.ai-profile-card {
  border: 1px solid;
  border-radius: 10px;
  background: #fff;
  padding: .75rem;
}

.ai-profile-card h3 { margin: 0 0 .25rem; font-size: .95rem; }
.ai-profile-card p { margin: 0; font-size: .84rem; line-height: 1.45; }
.ai-profile-card small { display: block; margin-top: .3rem; font-size: .75rem; }

.ai-profile-ok { border-color: #86efac; }
.ai-profile-ok small { color: #16a34a; }

.ai-profile-no { border-color: #fca5a5; }
.ai-profile-no small { color: #dc2626; }

.ai-profile-foot,
.ai-profile-warning {
  margin-top: .8rem;
  text-align: center;
  border-radius: 10px;
  padding: .55rem;
}

.ai-profile-foot { background: #ecfdf5; border: 1px solid #86efac; }
.ai-profile-warning { background: #fff1f2; border: 1px solid #fca5a5; }

.ai-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
}

.ai-case-card {
  border: 1px solid #f3e6b0;
  background: #fff;
  border-radius: 12px;
  padding: .8rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.ai-case-card h3 { margin: 0 0 .25rem; color: #ca8a04; }
.ai-case-card blockquote {
  margin: 0 0 .45rem;
  border-left: 0;
  padding: .45rem .6rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  line-height: 1.45;
}
.ai-case-card p { margin: 0; font-size: .84rem; }

.ai-cases-metrics {
  margin-top: .75rem;
  border: 1px solid #f3e6b0;
  border-radius: 12px;
  background: #fff;
  padding: .85rem;
  text-align: center;
}

.ai-cases-metrics div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5rem;
}

.ai-cases-metrics strong { color: #ca8a04; }

.ai-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: .9rem;
}

.ai-cta-side {
  border: 1px solid #f3e6b0;
  border-radius: 10px;
  background: #fff;
  padding: .8rem;
}

.ai-cta-side ul { margin: .3rem 0 .55rem; padding-left: 1rem; }

.ai-cta-side h3,
.ai-cta-grid h3 {
  margin: .15rem 0 .2rem;
}

.ai-final-cta {
  background: #f4f7ff;
  border-color: #e6d58a;
}

.ai-final-cta h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.ai-final-cta > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #334155;
}

.ai-final-cta .lead-card {
  max-width: 1040px;
  border: 1px solid #e6d58a;
  background: #fffef8;
}

.ai-final-cta .lead-form select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: .45rem .55rem;
  font: inherit;
  background: #fff;
}

.ai-final-cta .lead-submit {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  border-color: #7c3aed;
  color: #fff;
}

.contract-hero {
  background: linear-gradient(135deg, #0f172a, #334155 52%, #1d4ed8);
}

.cloud-hero {
  background: linear-gradient(135deg, #0f766e, #0ea5e9 52%, #1d4ed8);
}

.software-hero {
  background: linear-gradient(135deg, #7c2d12, #f59e0b 52%, #f97316);
}

.gallery-hero {
  background: linear-gradient(135deg, #1e1b4b, #4338ca 52%, #6366f1);
}

.services-hero {
  background: linear-gradient(135deg, #0f172a, #1d4ed8 52%, #0ea5e9);
}

.seo-gpt-hero {
  background: #0f172a;
  border: 1px solid #1e293b;
}

.seo-gpt-hero .hero-kicker,
.seo-gpt-hero .hero-subtitle {
  color: #e5e7eb;
}

.seo-gpt-hero .btn-primary {
  background: #facc15;
  border-color: #eab308;
  color: #111827;
}

.seo-gpt-hero .btn-ghost {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111827;
}

.seo-gpt-proof article {
  background: #eef2ff;
  border-color: #bfdbfe;
}

.seo-gpt-sections .section-card {
  border-color: #cbd5e1;
}

.seo-gpt-final-cta {
  background: #ecfeff;
  border-color: #bae6fd;
}

.seo-gpt-hero {
  display: grid;
  gap: .8rem;
}

.seo-gpt-hero-note {
  margin: .7rem 0 0;
  color: #e2e8f0;
  max-width: 72ch;
}

.seo-gpt-head {
  text-align: center;
  margin-bottom: .8rem;
}

.seo-gpt-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
}

.seo-gpt-head p {
  margin: .35rem auto 0;
  color: #475569;
  max-width: 72ch;
}

.seo-gpt-card-layout,
.seo-gpt-timeline-wrap,
.seo-gpt-blue-canary {
  margin: 1rem 0;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 14px;
  padding: 1rem;
}

.seo-gpt-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.seo-gpt-card {
  border: 1px solid #dbeafe;
  background: #ffffff;
  border-radius: 12px;
  padding: .9rem;
}

.seo-gpt-promise-badge {
  margin: 0 0 .45rem;
  width: fit-content;
  border: 1px solid #facc15;
  background: #fef3c7;
  color: #78350f;
  border-radius: 999px;
  padding: .14rem .55rem;
  font-size: .76rem;
  font-weight: 700;
}

.seo-gpt-promise-copy {
  margin: .38rem 0 .45rem;
  border: 1px solid #bae6fd;
  background: #ecfeff;
  border-radius: 10px;
  padding: .45rem .55rem;
  color: #0f172a;
  font-size: .9rem;
  line-height: 1.4;
}

.seo-gpt-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  font-size: 1rem;
  margin-bottom: .35rem;
}

.seo-gpt-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.seo-gpt-card p {
  margin: .35rem 0 0;
  color: #475569;
  font-size: .95rem;
}

.seo-gpt-timeline {
  display: grid;
  gap: .65rem;
}

.seo-gpt-progress {
  margin: .1rem 0 .8rem;
}

.seo-gpt-progress-track {
  height: .55rem;
  border-radius: 999px;
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  overflow: hidden;
}

.seo-gpt-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #2563eb;
}

.seo-gpt-progress p {
  margin: .32rem 0 0;
  color: #475569;
  font-size: .84rem;
  text-align: right;
}

.seo-gpt-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem;
  align-items: stretch;
}

.seo-gpt-step {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #93c5fd;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  margin-top: .25rem;
}

.seo-gpt-timeline-card {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  border-radius: 12px;
  padding: .8rem;
}

.seo-gpt-timeline-card h3 {
  margin: 0;
  font-size: 1rem;
}

.seo-gpt-timeline-card p {
  margin: .3rem 0 0;
  color: #475569;
  font-size: .93rem;
}

.seo-gpt-canary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.seo-gpt-canary-card {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  border-radius: 12px;
  padding: .85rem;
}

.seo-gpt-canary-card h3 {
  margin: 0;
  font-size: 1rem;
}

.seo-gpt-canary-card ul {
  margin: .45rem 0 0;
  padding-left: 1rem;
}

.seo-gpt-canary-card li {
  margin: .22rem 0;
  color: #475569;
}

.ai-sections .section-card {
  border-color: #dbeafe;
}

.contract-sections .section-card {
  border-color: #cbd5e1;
}

.cloud-sections .section-card {
  border-color: #bae6fd;
}

.software-sections .section-card {
  border-color: #fed7aa;
}

.gallery-sections .section-card {
  border-color: #c7d2fe;
}

.services-sections .section-card {
  border-color: #bae6fd;
}

.gallery-head {
  display: grid;
  gap: .7rem;
  margin-bottom: .9rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: .9rem;
}

.gallery-back {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  width: fit-content;
  color: #1e40af;
  text-decoration: none;
  font-weight: 700;
}

.gallery-title-wrap h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.12;
}

.gallery-title-wrap p {
  margin: .35rem 0 0;
  color: #4b5563;
}

.gallery-top-link {
  margin-top: .45rem;
  display: inline-flex;
  text-decoration: none;
  border: 1px solid #fdba74;
  background: #fff7ed;
  color: #9a3412;
  border-radius: 999px;
  padding: .28rem .62rem;
  font-weight: 700;
  font-size: .86rem;
}

.gallery-filters {
  margin: .9rem 0 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .65rem;
}

.gallery-search,
.gallery-category {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  padding: 0 .75rem;
  font-size: .92rem;
}

.gallery-search input {
  border: none;
  outline: none;
  width: 100%;
  font: inherit;
  margin-left: .4rem;
  background: transparent;
}

.gallery-cards-block {
  margin-bottom: 1rem;
}

.gallery-cards-head h2 {
  margin: 0 0 .55rem;
  font-size: 1.25rem;
}

.gallery-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.gallery-item-card {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 14px;
  padding: .8rem;
  display: grid;
  gap: .7rem;
}

.gallery-item-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.gallery-item-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .6rem;
}

.gallery-item-initial {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
}

.gallery-item-top h3 {
  margin: 0;
  font-size: 1rem;
}

.gallery-item-badge {
  margin: .1rem 0 0;
  color: #6b7280;
  font-size: .78rem;
  display: inline-flex;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: .08rem .45rem;
  background: #f8fafc;
}

.gallery-item-badge.badge-saas {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
}

.gallery-item-badge.badge-app {
  border-color: #fcd34d;
  background: #fffbeb;
  color: #92400e;
}

.gallery-item-badge.badge-other {
  border-color: #c4b5fd;
  background: #f5f3ff;
  color: #6d28d9;
}

.gallery-item-desc {
  margin: 0;
  color: #374151;
  font-size: .9rem;
  line-height: 1.45;
}

.gallery-item-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
}

.gallery-item-metrics div {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .45rem;
  background: #f9fafb;
}

.gallery-item-metrics span {
  display: block;
  color: #6b7280;
  font-size: .72rem;
}

.gallery-item-metrics strong {
  display: block;
  margin-top: .08rem;
  font-size: .83rem;
  line-height: 1.35;
}

.gallery-footer-nav {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.gallery-budget-cta {
  margin: 1rem 0;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: linear-gradient(135deg, #ecfeff, #eef2ff);
  padding: 1rem;
  text-align: center;
}

.gallery-budget-cta h2 {
  margin: 0;
  font-size: 1.35rem;
}

.gallery-budget-cta p {
  margin: .4rem auto .8rem;
  max-width: 62ch;
  color: #334155;
}

.privacy-hero {
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.28), transparent 42%),
    radial-gradient(circle at 16% 18%, rgba(34, 211, 238, 0.26), transparent 40%),
    linear-gradient(150deg, #052e2b 0%, #063b35 46%, #042f2e 100%);
}

.prefs-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(56, 189, 248, 0.25), transparent 42%),
    radial-gradient(circle at 12% 24%, rgba(20, 184, 166, 0.2), transparent 44%),
    linear-gradient(150deg, #062f3a 0%, #084457 45%, #052b37 100%);
}

.privacy-proof,
.prefs-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.privacy-sections .feature-card {
  border-color: rgba(16, 185, 129, 0.28);
}

.prefs-sections .feature-card {
  border-color: rgba(56, 189, 248, 0.28);
}

.contract-proof,
.cloud-proof,
.software-proof,
.gallery-proof,
.services-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-block h2 {
  margin: 0;
  font-size: 1.3rem;
}

.video-block p {
  margin: .35rem auto .9rem;
  color: #475569;
  max-width: 70ch;
}

.video-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.video-wrap iframe {
  width: 100%;
  height: min(56vw, 460px);
  border: 0;
  display: block;
}

.hero-glow {
  position: absolute;
  inset: auto -30% -40% auto;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 65%);
}

.hero-content { position: relative; }

.hero-kicker {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .8;
  margin: 0 0 .25rem;
}

.hero h1 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(2.3rem, 6.2vw, 5.4rem);
}

.hero-subtitle {
  margin: .8rem 0 0;
  max-width: 65ch;
  color: rgba(255,255,255,.93);
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem 1rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: #facc15;
  border-color: #eab308;
  color: #111827;
}

.btn-ghost {
  color: #111827;
  border-color: #d1d5db;
  background: #fff;
}

.meta-grid {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .75rem;
}

.meta-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem .9rem;
}

.meta-label {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-value {
  margin: .2rem 0 0;
  font-size: .92rem;
}

.sections {
  display: grid;
  gap: .9rem;
}

.home-sections {
  margin-top: .5rem;
}

.home-block {
  scroll-margin-top: 90px;
}

.section-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.section-card > header h2 {
  margin: 0 0 .7rem;
  font-size: 1.2rem;
}

.section-body {
  color: #1e293b;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.fit-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: .8rem;
}

.fit-card h3 {
  margin: 0 0 .45rem;
  font-size: 1rem;
}

.fit-ok {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.fit-no {
  background: #fff1f2;
  border-color: #fecdd3;
}

.final-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, #ecfeff, #eef2ff);
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.final-cta h3 {
  margin: 0;
  font-size: 1.1rem;
}

.final-cta p {
  margin: .35rem 0 .8rem;
  color: #334155;
}

h1, h2, h3, h4 {
  line-height: 1.25;
}

blockquote {
  margin: .7rem 0;
  border-left: 4px solid var(--accent);
  padding: .4rem .8rem;
  background: #f0f9ff;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}

th, td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: .6rem;
  vertical-align: top;
}

thead th {
  background: #f8fafc;
  font-size: .88rem;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.2rem 0;
}

a {
  color: #0369a1;
}

code {
  background: #e2e8f0;
  padding: .1rem .35rem;
  border-radius: 5px;
}

@media (max-width: 980px) {
  .ai-process-grid,
  .ai-types-grid,
  .ai-benefits-grid,
  .ai-cases-grid,
  .ai-cases-metrics div,
  .ai-profile-grid,
  .ai-cta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ai-ba-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-main {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .ra-badge {
    order: 3;
  }

  .site-header .container {
    align-items: flex-start;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .2rem;
  }

  .hero {
    padding: 1.2rem;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-strip {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .contract-grid {
    grid-template-columns: 1fr;
  }

  .ai-proof {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .gallery-filters {
    grid-template-columns: 1fr;
  }

  .gallery-cards-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-metrics {
    grid-template-columns: 1fr;
  }

  .contract-proof,
  .cloud-proof,
  .software-proof,
  .gallery-proof,
  .services-proof {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .ai-strip-cards,
  .ai-process-grid,
  .ai-types-grid,
  .ai-benefits-grid,
  .ai-cases-grid,
  .ai-cases-metrics div,
  .ai-profile-grid,
  .ai-cta-grid {
    grid-template-columns: 1fr;
  }

  .ai-process-card::after {
    display: none;
  }

  .ai-hero .btn-primary,
  .ai-hero .btn-ghost {
    width: 100%;
  }

  .seo-gpt-cards-grid,
  .seo-gpt-canary-grid {
    grid-template-columns: 1fr;
  }

  .seo-gpt-timeline-item {
    grid-template-columns: 1fr;
  }

  .seo-gpt-step {
    margin-top: 0;
  }
}

@media (max-width: 1180px) {
  .gallery-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
