﻿/* HOMEページ専用スタイル
 * ベースカラーは public/shared/style.css を踏襲しつつ、
 * 訪問者向けランディングとして余白・タイポを再設計。
 */

:root {
  --home-max: 1100px;
  --home-text: #1f2937;
  --home-muted: #6b7280;
  --home-line: #e5e7eb;
  --home-bg: #ffffff;
  --home-bg-alt: #f8fafc;
  --home-bg-soft: #f1f5f9;
  --home-primary: #2563eb;
  --home-primary-dark: #1d4ed8;
  --home-primary-soft: #eff6ff;
  --home-accent: #f59e0b;
  --home-shadow: 0 12px 32px rgba(15, 23, 42, .06);
  --home-radius: 12px;
}

.home-page {
  background: var(--home-bg);
  color: var(--home-text);
  line-height: 1.7;
}

.home-page main {
  display: block;
}

/* ===== Header ===== */
.home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--home-line);
}
.home-header-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.home-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.home-brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--home-text);
}
.home-brand-sub {
  font-size: 12px;
  color: var(--home-muted);
}
.home-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.home-nav a {
  color: var(--home-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.home-nav a:hover {
  color: var(--home-primary);
}
.home-nav-cta {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--home-primary);
  color: #fff !important;
}
.home-nav-cta:hover {
  background: var(--home-primary-dark);
  color: #fff !important;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--home-line);
}
.hero-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 48px 24px 16px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.hero-title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.hero-accent {
  color: var(--home-primary);
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(245, 158, 11, .25);
  z-index: -1;
  border-radius: 4px;
}
.hero-lead {
  font-size: 17px;
  color: #374151;
  margin: 0 0 28px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-badges {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-badges li {
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 5px 12px;
}
.hero-badges li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 800;
}
/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
}
.hero-preview-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

/* ===== CTA ===== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, color .15s ease;
}
.cta:hover {
  transform: translateY(-1px);
}
.cta-primary {
  background: var(--home-primary);
  color: #fff;
}
.cta-primary:hover {
  background: var(--home-primary-dark);
  color: #fff;
}
.cta-secondary {
  background: #fff;
  color: var(--home-primary);
  border-color: var(--home-primary);
}
.cta-secondary:hover {
  background: var(--home-primary-soft);
}

/* ===== Sections ===== */
.section {
  padding: 64px 24px;
}
.section:nth-of-type(even) {
  background: var(--home-bg-alt);
}
.section-inner {
  max-width: var(--home-max);
  margin: 0 auto;
}
.section-title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.section-lead {
  text-align: center;
  color: var(--home-muted);
  font-size: 16px;
  margin: 0 0 40px;
}
.section-conclusion {
  text-align: center;
  font-size: 16px;
  color: var(--home-text);
  font-weight: 600;
  margin: 36px 0 0;
}

/* ===== Pain ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
}
.pain-icon {
  flex-shrink: 0;
  width: 28px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.pain-icon img {
  filter: invert(27%) sepia(97%) saturate(1200%) hue-rotate(210deg) brightness(95%) contrast(95%);
}
.pain-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--home-text);
  line-height: 1.6;
}

/* ===== Before/After ===== */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.ba-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  display: grid;
  gap: 14px;
  align-content: start;
}
.ba-before {
  border-color: #fecaca;
}
.ba-after {
  border-color: #bbf7d0;
  box-shadow: 0 12px 32px rgba(34, 197, 94, .12);
}
.ba-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.ba-before .ba-tag {
  background: #fef2f2;
  color: #b91c1c;
}
.ba-after .ba-tag {
  background: #f0fdf4;
  color: #15803d;
}
.ba-steps {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 6px;
}
.ba-steps li {
  font-size: 14px;
  color: var(--home-text);
}
.ba-time {
  font-size: 14px;
  color: var(--home-muted);
  border-top: 1px dashed var(--home-line);
  padding-top: 12px;
}
.ba-time strong {
  color: var(--home-text);
  font-size: 18px;
}
.ba-after .ba-time strong {
  color: #15803d;
}
.ba-note {
  font-size: 12px;
  color: var(--home-muted);
}
.ba-arrow {
  align-self: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--home-primary);
}

/* ===== How ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-card {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  text-align: center;
}
.how-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--home-primary);
  background: var(--home-primary-soft);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.how-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 12px;
}
.how-icon img {
  filter: invert(27%) sepia(97%) saturate(1200%) hue-rotate(210deg) brightness(95%) contrast(95%);
}
.how-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
}
.how-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}
.how-preview {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}
.how-preview-img {
  display: block;
  width: 100%;
  height: auto;
}
.how-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
}
.feature-icon {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.feature-icon img {
  width: 28px;
  height: 28px;
  filter: invert(27%) sepia(97%) saturate(1200%) hue-rotate(210deg) brightness(95%) contrast(95%);
}
.feature-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}
.feature-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== Demo ===== */
.demo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.demo-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  display: grid;
  gap: 14px;
  align-content: start;
  box-shadow: var(--home-shadow);
}
.demo-card-tag {
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--home-primary-soft);
  color: var(--home-primary);
  font-size: 12px;
  font-weight: 700;
}
.demo-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}
.demo-card p {
  margin: 0;
  color: var(--home-text);
  font-size: 15px;
  line-height: 1.7;
}
.demo-card .cta {
  width: fit-content;
  margin-top: 6px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  display: grid;
  gap: 16px;
  align-content: start;
  text-align: center;
}
.pricing-card-popular {
  border-color: var(--home-primary);
  border-width: 2px;
  box-shadow: 0 12px 32px rgba(37, 99, 235, .15);
  transform: translateY(-6px);
}
.pricing-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--home-primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pricing-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--home-muted);
}
.pricing-price {
  font-size: 14px;
  color: var(--home-text);
}
.pricing-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--home-text);
  letter-spacing: -0.01em;
}
.pricing-unit {
  font-size: 16px;
  color: var(--home-muted);
}
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: left;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  padding: 16px 0;
}
.pricing-features li {
  font-size: 13px;
  color: var(--home-text);
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--home-primary);
  font-weight: 800;
}
.pricing-card .cta {
  width: 100%;
}
.pricing-notes {
  margin: 36px 0 0;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  list-style: none;
  display: grid;
  gap: 8px;
}
.pricing-notes li {
  font-size: 13px;
  color: var(--home-muted);
  padding-left: 16px;
  position: relative;
}
.pricing-notes li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ===== Security ===== */
.security-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.security-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
}
.security-check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0fdf4;
  color: #15803d;
  font-weight: 800;
}
.security-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--home-text);
  font-size: 15px;
}
.security-list > li > div {
  font-size: 14px;
  color: var(--home-muted);
  line-height: 1.7;
}
.security-note {
  padding: 16px 20px;
  background: #fffbeb;
  border-left: 3px solid var(--home-accent);
  border-radius: 4px;
  font-size: 14px;
  color: var(--home-text);
  line-height: 1.7;
}
.security-note strong {
  color: #b45309;
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--home-primary-soft);
  color: var(--home-primary);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.8;
}
.faq-item-honest summary {
  background: #fffbeb;
}

/* ===== About ===== */
.about-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
}
.about-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--home-primary), #7c3aed);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 44px;
  font-weight: 800;
  flex-shrink: 0;
}
.about-name {
  font-size: 20px;
  font-weight: 800;
}
.about-age {
  font-size: 14px;
  color: var(--home-muted);
  font-weight: 600;
}
.about-location {
  font-size: 13px;
  color: var(--home-muted);
  margin-bottom: 16px;
}
.about-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--home-text);
}
.about-h {
  margin: 18px 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--home-primary);
  letter-spacing: 0.05em;
}
.about-experience {
  list-style: none;
  margin: 0 0 18px;
  padding: 14px 18px;
  background: var(--home-bg-alt);
  border-radius: 8px;
  display: grid;
  gap: 10px;
}
.about-experience li {
  font-size: 13px;
}
.about-experience strong {
  display: block;
  color: var(--home-text);
  margin-bottom: 2px;
}
.about-experience span {
  display: block;
  color: var(--home-muted);
  padding-left: 12px;
}
.about-message {
  font-size: 14px;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.contact-form {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  display: grid;
  gap: 16px;
}
.contact-row {
  display: grid;
  gap: 6px;
}
.contact-row label {
  font-size: 13px;
  font-weight: 700;
  color: var(--home-text);
  margin: 0;
}
.contact-row input,
.contact-row select,
.contact-row textarea {
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #fff;
  color: var(--home-text);
  font-family: inherit;
}
.contact-row textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-row input:focus,
.contact-row select:focus,
.contact-row textarea:focus {
  outline: 2px solid var(--home-primary);
  outline-offset: 0;
  border-color: var(--home-primary);
}
.contact-row .required {
  font-size: 11px;
  color: #b91c1c;
  background: #fef2f2;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 4px;
}
.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.contact-actions .cta {
  cursor: pointer;
  border: 0;
}
.contact-status {
  font-size: 13px;
  color: var(--home-muted);
}
.contact-status.success {
  color: #15803d;
  font-weight: 700;
}
.contact-status.error {
  color: #b91c1c;
  font-weight: 700;
}
.contact-privacy {
  margin: 0;
  color: var(--home-muted);
}
.contact-side {
  padding: 28px;
  background: var(--home-bg-alt);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  align-self: start;
}
.contact-side h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
}
.contact-side-list {
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.contact-side-list dt {
  font-size: 11px;
  font-weight: 800;
  color: var(--home-muted);
  letter-spacing: 0.08em;
  margin: 0;
}
.contact-side-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--home-text);
}

/* ===== Footer ===== */
.home-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 36px 24px;
}
.home-footer-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.home-footer-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.home-footer-tag {
  font-size: 11px;
  color: #94a3b8;
}
.home-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.home-footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
}
.home-footer-nav a:hover {
  color: #fff;
}
.home-footer-copy {
  font-size: 12px;
  color: #94a3b8;
}

.small {
  font-size: 12px;
  color: var(--home-muted);
  line-height: 1.6;
}

/* ===== Hero demo note ===== */
.hero-demo-note {
  font-size: 13px;
  color: var(--home-muted);
  margin: -12px 0 16px;
  line-height: 1.6;
}

/* ===== Hero tech logos ===== */
.hero-tech {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-tech-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--home-muted);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-tech-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-tech-sep {
  color: var(--home-line);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.hero-tech-azure {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #505050;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.hero-tech-azure strong {
  font-weight: 700;
  color: #0078D4;
}
.hero-tech-openai {
  display: flex;
  align-items: center;
}
.hero-tech-icon {
  height: 40px;
  width: 40px;
  display: block;
  margin-right: -11px;
  flex-shrink: 0;
}
.hero-tech-wordmark {
  height: 50px;
  width: auto;
  display: block;
}

/* ===== ROI ===== */
.roi-table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-line);
}
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.roi-table thead th {
  background: var(--home-bg-soft);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--home-muted);
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--home-line);
  white-space: nowrap;
}
.roi-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-text);
  vertical-align: middle;
}
.roi-table tbody tr:last-child td {
  border-bottom: none;
}
.roi-after {
  color: #15803d;
  font-weight: 700;
}
.roi-save {
  font-weight: 700;
  color: var(--home-primary);
}
.roi-cost {
  font-weight: 700;
}
.roi-row-highlight {
  background: #f0fdf4;
}
.roi-row-highlight td {
  border-color: #bbf7d0;
}
.roi-note {
  font-size: 12px;
  color: var(--home-muted);
  line-height: 1.8;
  margin: 0 0 8px;
}
.roi-note a {
  color: var(--home-primary);
}

/* ===== Tech ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}
.tech-card {
  padding: 32px 30px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: var(--home-shadow);
}
.tech-card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--home-muted);
  text-transform: uppercase;
}
.tech-card-name {
  display: flex;
  align-items: center;
}
.tech-logo-lockup {
  display: flex;
  align-items: center;
  gap: 0;
}
.tech-logo-icon {
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  display: block;
  margin-right: -22px;
}
.tech-logo-wordmark {
  height: 65px;
  width: auto;
  display: block;
}
.tech-logo {
  height: 36px;
  max-width: 240px;
  width: auto;
  display: block;
  object-fit: contain;
}
.tech-azure-text {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #505050;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tech-azure-text strong {
  font-weight: 700;
  color: #0078D4;
}
.tech-card-desc {
  margin: 0;
  font-size: 14px;
  color: var(--home-muted);
  line-height: 1.7;
}
.tech-note {
  font-size: 12px;
  color: var(--home-muted);
  margin: 0;
  text-align: center;
}

/* ===== Final CTA ===== */
.section-final-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  color: #fff;
}
.final-cta-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.final-cta-lead {
  text-align: center;
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  margin: 0 0 32px;
  line-height: 1.7;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-lg {
  padding: 16px 28px;
  font-size: 16px;
}
.section-final-cta .cta-primary {
  background: #fff;
  color: var(--home-primary);
}
.section-final-cta .cta-primary:hover {
  background: #f0f9ff;
  color: var(--home-primary-dark);
}
.section-final-cta .cta-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.section-final-cta .cta-secondary:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.final-cta-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.final-cta-badges li {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: 4px 12px;
}
.final-cta-badges li::before {
  content: "✓ ";
  color: #86efac;
  font-weight: 800;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 32px;
  }
  .hero-title {
    font-size: 30px;
  }
  .home-nav {
    display: none;
  }
  .section {
    padding: 56px 20px;
  }
  .section-title {
    font-size: 24px;
  }
  .pain-grid,
  .features-grid,
  .demo-grid-2 {
    grid-template-columns: 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .ba-arrow {
    transform: rotate(90deg);
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card-popular {
    transform: none;
  }
  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .about-avatar {
    margin: 0 auto;
  }
  .about-experience span {
    padding-left: 0;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .final-cta-title {
    font-size: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .home-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-footer-nav {
    justify-content: center;
  }
}
