/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* === Root & Base === */
:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --text: #211922;
  --text-secondary: #555555;
  --text-muted: #ababab;
  --accent: #e60023;
  --border: #efefef;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 16px;
  --transition: all 0.2s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; height: 72px;
}
.logo { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.logo span { color: var(--accent); }
.nav { display: flex; gap: 28px; margin-left: 48px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.15s; }
.nav a:hover { color: var(--accent); }
.header-cta {
  margin-left: auto;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s ease, transform 0.15s ease;
}
.header-cta:hover { background: #ad081b; transform: translateY(-1px); }

/* === Hero / Top Section === */
.top-section { background: var(--bg-alt); padding: 88px 0 72px; }
.top-section .container { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr); align-items: center; gap: 72px; }
.top-text { flex: 1; }
.top-text .label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.top-text h1 {
  font-size: clamp(38px, 4.2vw, 52px); font-weight: 750;
  line-height: 1.18; letter-spacing: -0.025em;
  margin-bottom: 16px; color: var(--text);
}
.top-text p { font-size: 16px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 28px; max-width: 620px; }
.hero-actions { display: flex; align-items: center; gap: 12px; }
.hero-actions .btn-outline { margin-left: 0; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  list-style: none;
  color: var(--text-secondary);
  font-size: 14px;
}
.hero-points li::before { content: "✓"; margin-right: 7px; color: var(--accent); font-weight: 800; }
.btn {
  display: inline-block; padding: 12px 24px;
  border-radius: 24px; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #ad081b; }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--text); margin-left: 12px; }
.btn-outline:hover { background: var(--text); color: #fff; }
.top-visual { display: flex; justify-content: flex-end; }
.top-visual img {
  width: 100%; max-width: 480px; aspect-ratio: 4/3;
  object-fit: cover; border-radius: var(--radius);
  background: var(--bg-alt);
}

/* === Section Shared === */
section { padding: 88px 0; }
.section-upper { margin-bottom: 36px; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.section-title {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  line-height: 1.22; letter-spacing: -0.02em; color: var(--text);
}
.section-desc { max-width: 620px; margin-top: 12px; color: var(--text-secondary); font-size: 16px; line-height: 1.7; }

/* === Homepage support scope === */
.support-section { padding: 40px 0; border-bottom: 1px solid var(--border); background: #fff; }
.support-grid { display: grid; grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr)); gap: 28px; align-items: start; }
.support-intro h2 { max-width: 250px; font-size: 20px; line-height: 1.35; }
.support-item { padding-left: 24px; border-left: 1px solid var(--border); }
.support-item strong { display: block; margin-bottom: 8px; font-size: 15px; }
.support-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* === Cards Grid === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--card-shadow); transform: translateY(-3px); }
.card-img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; background: var(--bg-alt);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.card-body { padding: 18px 20px 22px; }
.card-body h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.35; }
.card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.card-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--accent); }
.card-link:hover { text-decoration: underline; }

/* === Two-Column Section === */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.col-text .label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.col-text h2 { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--text); }
.col-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.col-img {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-alt);
}
.col-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Trust & Intake === */
.trust-section {
  background: #fff;
}

/* === Homepage process === */
.process-section { background: var(--bg-alt); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.process-step { position: relative; padding: 30px 34px; border: 1px solid var(--border); background: #fff; }
.process-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.process-step + .process-step { border-left: 0; }
.process-step span { display: block; margin-bottom: 28px; color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; }
.process-step h3 { margin-bottom: 10px; font-size: 19px; }
.process-step p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

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

.trust-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

.trust-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(230,0,35,0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.trust-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.intake-section {
  background: var(--bg-alt);
}

.intake-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.intake-box h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.intake-box p {
  max-width: 460px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.template-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.template-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.template-head strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.copy-template {
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.template-card pre {
  min-height: 164px;
  padding: 16px;
  overflow-x: auto;
  border-radius: 12px;
  background: #171417;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

/* === FAQ === */
.faq-section { background: var(--bg-alt); }
.faq-layout { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: 88px; align-items: start; }
.faq-intro { position: sticky; top: 112px; }
.faq-intro p { margin: 16px 0 24px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.faq-list { max-width: none; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; cursor: pointer; }
.faq-item summary {
  font-size: 15px; font-weight: 600; color: var(--text);
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 18px; font-weight: 400; color: var(--text-muted); margin-left: 16px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-top: 12px; }

/* === CTA Section === */
.cta-section { background: var(--bg-alt); padding: 72px 0; text-align: center; }
.cta-section h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 12px; }
.cta-section p { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* === Contact Grid === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px; max-width: 720px; margin: 0 auto;
}
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; }
.contact-card h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-card p { font-size: 13px; color: var(--text-secondary); }
.contact-action { display: inline-block; margin: 12px 0 0; padding: 7px 16px; font-size: 13px; }

/* === Article Page === */
.article-hero { background: var(--bg-alt); padding: 64px 0 48px; }
.article-hero .label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.article-hero h1 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); max-width: 720px; }
.article-hero .meta { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.article-body { max-width: 720px; margin: 48px auto; padding: 0 40px; }
.article-body h2 { font-size: 22px; font-weight: 700; margin: 36px 0 16px; color: var(--text); }
.article-body h3 { font-size: 18px; font-weight: 600; margin: 28px 0 12px; color: var(--text); }
.article-body p { font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 12px 0 16px 20px; }
.article-body li { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 8px; }
.article-body pre { background: #f7f7f7; border-radius: 8px; padding: 16px; overflow-x: auto; margin: 16px 0; font-size: 14px; line-height: 1.6; }
.article-body code { background: #f7f7f7; padding: 2px 6px; border-radius: 4px; font-size: 14px; }
.article-body img { border-radius: 8px; margin: 20px 0; }

/* === Page Hero (for sub pages) === */
.page-hero { background: var(--bg-alt); padding: 64px 0 48px; }
.page-hero .label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.page-hero h1 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
.page-hero p { font-size: 15px; color: var(--text-secondary); margin-top: 12px; max-width: 560px; line-height: 1.65; }

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 64px;
}
.page-hero-visual { max-width: 560px; justify-self: end; }
.page-hero-img { border-radius: 16px; box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08); }

.service-detail-page { padding: 72px 0 32px; }
.service-detail-page > .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.service-detail-page .service-block {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.service-detail-page .service-block ul { margin: 0 0 22px 20px; }
.service-detail-page .service-block li { margin: 7px 0; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.price-box { margin: 20px 0; padding: 16px; border-radius: 12px; background: var(--bg-alt); }
.price-box .label, .price-box .price-note { font-size: 12px; color: var(--text-muted); }
.price-box .value { margin: 4px 0; font-size: 20px; font-weight: 700; color: var(--text); }

.contact-section { padding: 64px 0 72px; }
.contact-section .section-title, .contact-desc { text-align: center; }
.contact-desc { margin: 10px auto 26px; max-width: 560px; color: var(--text-secondary); font-size: 14px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 860px; margin: 0 auto; }
.contact-cards .contact-card { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.contact-label { font-size: 13px; font-weight: 700; }
.contact-value { font-size: 13px; color: var(--text-secondary); overflow-wrap: anywhere; }
.copy-btn, .contact-link { margin-top: 6px; border: 0; background: transparent; color: var(--accent); font-size: 13px; font-weight: 600; cursor: pointer; }

/* === Services Table === */
.service-block { margin-bottom: 48px; }
.service-block h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.service-block p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 16px; }
.service-block .price { font-size: 18px; font-weight: 700; color: var(--accent); margin: 12px 0; }

/* === Footer === */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; text-align: center; font-size: 13px; color: var(--text-muted); }
.site-footer p:first-child { font-weight: 600; color: var(--text); font-size: 14px; margin-bottom: 4px; }

/* === Responsive === */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .top-section .container, .two-col, .intake-box, .support-grid, .process-grid, .faq-layout { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .support-item { padding: 20px 0 0; border-left: 0; border-top: 1px solid var(--border); }
  .process-step:first-child, .process-step:last-child { border-radius: 0; }
  .process-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .process-step:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .process-step + .process-step { border-left: 1px solid var(--border); border-top: 0; }
  .faq-intro { position: static; }
  .template-head { align-items: stretch; flex-direction: column; }
  .copy-template { width: 100%; }
  .top-section { padding: 48px 0 40px; }
  section { padding: 48px 0; }
  .nav { display: none; }
  .site-header:not(.minimal-header) .container { min-height: 62px; height: auto; }
  .site-header:not(.minimal-header) .nav {
    display: flex;
    margin-left: auto;
    gap: 16px;
    white-space: nowrap;
  }
  .site-header:not(.minimal-header) .nav a { font-size: 13px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-visual { max-width: none; justify-self: stretch; }
  .service-detail-page { padding: 44px 0 16px; }
  .service-detail-page > .container { grid-template-columns: 1fr; }
  .service-detail-page .service-block { padding: 24px; }
  .contact-cards { grid-template-columns: 1fr; }
  .header-cta { padding: 9px 14px; font-size: 13px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { margin: 0; text-align: center; }
  .article-body { padding: 0 20px; }
}

/* === Homepage: Apple-inspired minimal direction === */
.home-minimal {
  --home-black: #0b0b0d;
  --home-gray: #f5f5f7;
  --home-muted: #6e6e73;
  color: #1d1d1f;
  background: #fff;
}
.home-minimal .container { max-width: 1180px; }
.minimal-header { background: rgba(255,255,255,0.88); backdrop-filter: saturate(180%) blur(18px); }
.minimal-header .container { height: 68px; }
.minimal-header .nav { margin-left: 56px; gap: 36px; }
.minimal-header .nav a { color: #1d1d1f; font-size: 14px; font-weight: 600; line-height: 1; letter-spacing: -0.01em; }
.minimal-header .nav a:hover { color: #000; }
.minimal-header .nav .nav-store { color: #0066cc; }
.minimal-header .nav .nav-store:hover { color: #004f9e; }
.minimal-header .header-cta { padding: 10px 18px; background: #1d1d1f; font-size: 14px; font-weight: 600; line-height: 1; letter-spacing: -0.01em; }
.minimal-header .header-cta:hover { background: #000; }
.site-connection { border-top: 1px solid #ededee; border-bottom: 1px solid #e5e5e7; background: #f5f5f7; }
.site-connection .container { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-connection p { display: flex; align-items: baseline; gap: 12px; }
.site-connection p strong { color: #1d1d1f; font-size: 14px; font-weight: 650; }
.site-connection p span { color: #6e6e73; font-size: 13px; }
.site-connection a { display: flex; align-items: center; gap: 14px; color: #1d1d1f; font-size: 13px; }
.site-connection a > span { color: #6e6e73; }
.site-connection a strong { color: #0066cc; font-weight: 650; }
.site-connection a:hover strong { text-decoration: underline; }
.home-minimal main section[id] { scroll-margin-top: 68px; }

.home-minimal section { padding: 120px 0; }
.home-minimal .eyebrow {
  margin-bottom: 18px;
  color: #86868b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.minimal-hero {
  padding: 66px 0 0 !important;
  overflow: hidden;
  background: #fff;
  text-align: center;
}
.hero-center { display: flex; flex-direction: column; align-items: center; }
.minimal-hero h1 {
  max-width: 930px;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 730;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.minimal-hero h1 span { display: block; }
.minimal-hero .hero-platform { color: #1d1d1f; }
.minimal-hero .hero-solution { margin-top: 16px; color: #1d1d1f; font-size: 32px; font-weight: 680; line-height: 1.15; letter-spacing: -0.035em; }
.hero-lead {
  max-width: 980px;
  margin: 24px auto 0;
  color: #2c2c2e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}
.hero-actions-center { justify-content: center; margin-top: 16px; }
.hero-consult-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 2px;
  color: #0066cc;
  font-size: 18px;
  font-weight: 600;
  transition: gap 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-consult-link:hover { gap: 13px; text-decoration: underline; }
.home-minimal .btn { padding: 13px 24px; border-radius: 999px; font-size: 15px; }
.home-minimal .btn-primary { background: #0071e3; }
.home-minimal .btn-primary:hover { background: #0077ed; }
.home-minimal .text-link { color: #0066cc; font-size: 15px; font-weight: 650; }
.home-minimal .text-link:hover { text-decoration: underline; }
.hero-note {
  margin-top: 18px;
  color: #2c2c2e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}
.hero-product-frame {
  width: min(100%, 930px);
  margin-top: 0;
}
.hero-product-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 50%;
  -webkit-mask-image: none;
  mask-image: none;
}

.compatibility-bar { padding: 0 !important; border-bottom: 1px solid #e5e5e7; background: #fff; }
.compatibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.compatibility-grid > div { min-height: 112px; padding: 27px 28px; border-right: 1px solid #e5e5e7; }
.compatibility-grid > div:last-child { border-right: 0; }
.compatibility-grid span { display: block; margin-bottom: 10px; color: #86868b; font-size: 12px; }
.compatibility-grid strong { font-size: 15px; line-height: 1.5; }

.minimal-heading { max-width: 760px; }
.minimal-heading h2 {
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 730;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.minimal-heading > p:last-child { max-width: 620px; margin-top: 22px; color: var(--home-muted); font-size: 17px; line-height: 1.7; }
.minimal-services .minimal-heading > p:last-child {
  max-width: 920px;
  color: #2c2c2e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}
.minimal-services { padding-top: 100px !important; padding-bottom: 100px !important; }
.feature-stack { display: grid; gap: 24px; margin-top: 52px; }
.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 440px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--home-gray);
}
.feature-row-reverse { grid-template-columns: 1.1fr 0.9fr; }
.feature-row-reverse .feature-copy { order: 2; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 52px 56px; }
.feature-number { margin-bottom: 52px; color: #86868b; font-size: 13px; font-weight: 700; }
.feature-copy h3 { max-width: 430px; font-size: 34px; line-height: 1.15; letter-spacing: -0.035em; }
.feature-copy p { max-width: 440px; margin: 22px 0 30px; color: var(--home-muted); font-size: 16px; line-height: 1.75; }
.feature-row > img { height: 100%; min-height: 440px; object-fit: cover; }
.live-feature-row { border: 1px solid #e8e8ed; background: #fff; }
.live-feature-row .feature-number { margin-bottom: 32px; color: #86868b; }
.live-feature-row .feature-copy p {
  max-width: 470px;
  margin: 16px 0 0;
  color: #2c2c2e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
.live-feature-row .feature-copy .text-link { margin-top: 28px; }
.live-feature-row .feature-copy .text-link { color: #1d1d1f; }
.live-feature-row .feature-copy .text-link:hover { color: #000; }
.live-feature-row > img { object-position: center; }
.secondary-services { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.secondary-services a { position: relative; min-height: 210px; padding: 36px 40px; border-radius: 26px; background: #fbfbfd; }
.secondary-services span { color: #515154; font-size: 12px; font-weight: 600; }
.secondary-services h3 { margin: 22px 0 10px; color: #1d1d1f; font-size: 24px; font-weight: 700; letter-spacing: -0.025em; }
.secondary-services p { max-width: 430px; color: #2c2c2e; font-size: 15px; font-weight: 500; line-height: 1.7; }
.secondary-services b { position: absolute; top: 34px; right: 36px; font-size: 20px; }

.minimal-process { background: var(--home-black); color: #f5f5f7; }
.process-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 120px; align-items: start; }
.process-heading { position: sticky; top: 112px; }
.process-heading h2 { color: #f5f5f7; }
.process-heading > p:last-of-type { color: #a1a1a6; }
.process-heading .text-link { display: inline-block; margin-top: 30px; color: #2997ff; }
.minimal-steps { list-style: none; }
.minimal-steps li { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 38px 0; border-top: 1px solid #333336; }
.minimal-steps li:last-child { border-bottom: 1px solid #333336; }
.minimal-steps li > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: #252527; color: #2997ff; font-size: 14px; font-weight: 700; }
.minimal-steps h3 { margin: 6px 0 10px; font-size: 24px; }
.minimal-steps p { color: #a1a1a6; font-size: 16px; line-height: 1.7; }

.minimal-sim { padding-top: 132px !important; padding-bottom: 132px !important; background: #f5f5f7; }
.sim-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 88px; align-items: center; }
.sim-heading { max-width: 520px; }
.sim-heading .sim-subtitle { margin-top: 20px; color: #1d1d1f; font-size: 32px; font-weight: 680; line-height: 1.15; letter-spacing: -0.035em; }
.sim-heading > p:last-of-type { max-width: 500px; color: #2c2c2e; font-size: 18px; font-weight: 500; line-height: 1.65; }
.sim-link { display: inline-flex; gap: 8px; margin-top: 28px; color: #1d1d1f; font-size: 16px; font-weight: 650; }
.sim-link:hover { text-decoration: underline; }
.sim-product-card { display: grid; grid-template-columns: 0.78fr 1.22fr; min-height: 550px; overflow: hidden; border: 1px solid #e5e5e7; border-radius: 32px; background: #fff; }
.sim-product-card > img { width: 100%; height: 100%; min-height: 550px; padding: 50px 24px; object-fit: contain; background: #fff; }
.sim-product-details { display: flex; flex-direction: column; justify-content: center; padding: 54px 48px; border-left: 1px solid #e5e5e7; }
.sim-product-details > span { color: #515154; font-size: 12px; font-weight: 650; }
.sim-product-details h3 { margin-top: 20px; color: #1d1d1f; font-size: 31px; line-height: 1.15; letter-spacing: -0.035em; }
.sim-product-details ul { margin-top: 34px; }
.sim-product-details li { padding: 20px 0; border-top: 1px solid #e5e5e7; }
.sim-product-details b, .sim-product-details small { display: block; }
.sim-product-details b { color: #1d1d1f; font-size: 16px; }
.sim-product-details small { margin-top: 7px; color: #515154; font-size: 13px; line-height: 1.55; }

.minimal-accounts { padding-top: 132px !important; padding-bottom: 120px !important; background: #fff; }
.account-split { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 60px; align-items: center; }
.account-copy { max-width: 610px; }
.account-copy h2 { font-size: clamp(38px, 4.4vw, 58px); font-weight: 730; line-height: 1.08; letter-spacing: -0.045em; }
.account-copy .account-subtitle { margin-top: 20px; color: #1d1d1f; font-size: 32px; font-weight: 680; line-height: 1.15; letter-spacing: -0.035em; }
.account-copy > p:not(.account-subtitle) { max-width: 540px; margin-top: 18px; color: #2c2c2e; font-size: 18px; font-weight: 500; line-height: 1.65; }
.account-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.account-platforms span { padding: 8px 12px; border: 1px solid #d2d2d7; border-radius: 999px; color: #1d1d1f; background: #fff; font-size: 12px; font-weight: 600; }
.account-link { display: inline-flex; gap: 8px; margin-top: 24px; color: #1d1d1f; font-size: 15px; font-weight: 650; }
.account-link:hover { text-decoration: underline; }
.account-visual { position: relative; min-height: 560px; }
.account-screen { position: absolute; display: flex; width: 60%; min-height: 430px; flex-direction: column; gap: 19px; padding: 42px 36px; border: 1px solid #e5e5e7; border-radius: 32px; background: #f5f5f7; box-shadow: 0 26px 76px rgba(0,0,0,0.09); }
.account-screen > span { margin-bottom: 8px; color: #86868b; font-size: 12px; font-weight: 650; }
.account-screen-back { top: 12px; left: 3%; transform: rotate(-2deg); }
.account-screen-front { right: 3%; bottom: 4px; transform: rotate(2deg); background: #fff; }
.platform-logo-row { display: flex; align-items: center; gap: 15px; padding: 14px 16px; border: 1px solid #ececef; border-radius: 17px; background: rgba(255,255,255,0.82); }
.platform-logo-row b { color: #1d1d1f; font-size: 15px; font-weight: 650; }
.platform-logo { position: relative; display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; overflow: hidden; border-radius: 12px; color: #fff; font-style: normal; font-weight: 750; line-height: 1; }
.logo-whatsapp { border-radius: 50%; background: #25d366; font-size: 19px; transform: rotate(-16deg); }
.logo-facebook { border-radius: 50%; background: #1877f2; font-family: Arial, sans-serif; font-size: 29px; padding-top: 7px; }
.logo-instagram { background: radial-gradient(circle at 68% 70%, #ffdc80 0 12%, #fcaf45 28%, #f77737 45%, #e1306c 62%, #c13584 76%, #833ab4 100%); }
.logo-instagram::before { content: ""; width: 21px; height: 21px; border: 2px solid #fff; border-radius: 7px; }
.logo-instagram::after { content: ""; position: absolute; width: 6px; height: 6px; border: 2px solid #fff; border-radius: 50%; }
.logo-instagram em { position: absolute; top: 9px; right: 9px; width: 3px; height: 3px; border-radius: 50%; background: #fff; }
.logo-xiaohongshu { background: #ff2442; font-size: 8px; letter-spacing: -0.08em; }
.logo-douyin { background: #111; font-family: Arial, sans-serif; font-size: 25px; text-shadow: -2px 0 #25f4ee, 2px 1px #fe2c55; }
.account-note { margin-top: 42px; color: #2c2c2e; font-size: 18px; font-weight: 500; line-height: 1.65; }

.more-resources { padding: 88px 0 !important; border-top: 1px solid #e5e5e7; background: #f5f5f7; }
.more-resources-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.more-resources-heading h2 { color: #1d1d1f; font-size: 42px; font-weight: 730; line-height: 1.1; letter-spacing: -0.04em; }
.more-resources-heading p { max-width: 490px; color: #515154; font-size: 16px; font-weight: 500; line-height: 1.65; }
.more-resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px; }
.more-resources-grid a { position: relative; min-height: 230px; padding: 28px 24px; border: 1px solid #e5e5e7; border-radius: 22px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.more-resources-grid a:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.more-resources-grid span { color: #6e6e73; font-size: 12px; font-weight: 650; }
.more-resources-grid h3 { margin-top: 22px; color: #1d1d1f; font-size: 21px; line-height: 1.25; letter-spacing: -0.025em; }
.more-resources-grid p { margin-top: 12px; color: #515154; font-size: 14px; font-weight: 500; line-height: 1.65; }
.more-resources-grid b { position: absolute; right: 22px; bottom: 20px; color: #1d1d1f; font-size: 18px; }
.popular-guides { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px; }
.popular-guides > span { margin-right: 4px; color: #6e6e73; font-size: 13px; font-weight: 650; }
.popular-guides a { padding: 10px 14px; border: 1px solid #dedee2; border-radius: 999px; background: rgba(255,255,255,.72); color: #3a3a3c; font-size: 13px; font-weight: 600; transition: background .2s ease, border-color .2s ease; }
.popular-guides a:hover { border-color: #b8b8bd; background: #fff; }

.minimal-guides { background: #fff; }
.heading-row { display: flex; max-width: none; align-items: end; justify-content: space-between; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }
.guide-card img { aspect-ratio: 4/3; object-fit: cover; border-radius: 22px; background: var(--home-gray); }
.guide-card > span { display: block; margin-top: 22px; color: #86868b; font-size: 12px; }
.guide-card h3 { margin-top: 8px; font-size: 21px; line-height: 1.35; letter-spacing: -0.02em; }

.minimal-faq { background: var(--home-gray); }
.faq-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 110px; align-items: start; }
.home-minimal .faq-item { padding: 26px 0; border-color: #d2d2d7; }
.home-minimal .faq-item summary { font-size: 18px; }
.home-minimal .faq-item p { max-width: 620px; color: var(--home-muted); font-size: 15px; }

.minimal-cta { padding: 28px !important; background: #fff; }
.cta-panel { max-width: none !important; padding: 110px 60px; border-radius: 36px; background: #1d1d1f; color: #fff; text-align: center; }
.cta-panel .eyebrow { color: rgba(255,255,255,0.65); }
.cta-panel h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.08; letter-spacing: -0.045em; }
.cta-panel > p:not(.eyebrow):not(.cta-contact) { margin: 26px auto 0; color: rgba(255,255,255,0.8); font-size: 17px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.btn-light { background: #fff; color: #1d1d1f; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.5); background: transparent; color: #fff; }
.cta-contact { margin-top: 30px; color: rgba(255,255,255,0.65); font-size: 13px; }
.minimal-footer { padding: 58px 0 28px; background: #fff; text-align: left; }
.footer-directory { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 54px; }
.footer-brand p { margin: 0 0 8px; color: #1d1d1f; font-size: 18px; font-weight: 700; }
.footer-brand span { color: #6e6e73; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h2 { margin-bottom: 4px; color: #1d1d1f; font-size: 13px; font-weight: 700; }
.footer-links a { color: #515154; font-size: 13px; line-height: 1.5; }
.footer-links a:hover { color: #000; text-decoration: underline; }
.footer-copyright { margin-top: 44px; padding-top: 22px; border-top: 1px solid #e5e5e7; color: #86868b; font-size: 12px; }

@media (max-width: 900px) {
  .home-minimal section { padding: 82px 0; }
  .minimal-hero { padding-top: 80px !important; }
  .minimal-hero h1 { font-size: clamp(44px, 9vw, 68px); }
  .compatibility-grid { grid-template-columns: 1fr 1fr; }
  .compatibility-grid > div:nth-child(2) { border-right: 0; }
  .compatibility-grid > div:nth-child(-n+2) { border-bottom: 1px solid #e5e5e7; }
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; }
  .feature-row-reverse .feature-copy { order: 0; }
  .feature-copy { padding: 52px; }
  .feature-row > img { min-height: 360px; }
  .process-split, .sim-split, .account-split, .faq-split { grid-template-columns: 1fr; gap: 58px; }
  .process-heading { position: static; }
}

@media (max-width: 768px) {
  .minimal-header .container { height: auto; min-height: 62px; flex-wrap: wrap; padding-top: 10px; }
  .minimal-header .logo { order: 1; }
  .minimal-header .header-cta { display: block; }
  .minimal-header .header-cta { order: 2; }
  .minimal-header .nav {
    display: flex;
    width: calc(100% + 40px);
    order: 3;
    gap: 0;
    margin: 10px -20px 0;
    padding: 0 12px;
    overflow-x: auto;
    border-top: 1px solid #e5e5e7;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .minimal-header .nav::-webkit-scrollbar { display: none; }
  .minimal-header .nav a { flex: 0 0 auto; padding: 14px 12px; font-size: 13px; }
  .site-connection .container { min-height: 0; padding-top: 13px; padding-bottom: 13px; gap: 16px; }
  .site-connection p { display: block; }
  .site-connection p span { display: none; }
  .site-connection a { margin-left: auto; }
  .site-connection a > span { display: none; }
  .home-minimal main section[id] { scroll-margin-top: 108px; }
  .home-minimal section { padding: 56px 0; }
  .minimal-services, .minimal-sim, .minimal-accounts { padding-top: 56px !important; padding-bottom: 56px !important; }
  .minimal-hero { padding-top: 46px !important; }
  .minimal-hero h1 { font-size: 36px; }
  .minimal-hero .hero-solution { font-size: 26px; }
  .hero-lead { margin-top: 20px; font-size: 16px; line-height: 1.6; }
  .hero-note { margin-top: 14px; font-size: 16px; line-height: 1.6; }
  .hero-actions-center { align-items: center; }
  .hero-product-frame { width: calc(100% + 28px); margin-top: 20px; border-radius: 18px 18px 0 0; }
  .compatibility-grid { grid-template-columns: 1fr 1fr; }
  .compatibility-grid > div { min-height: 100px; padding: 22px 16px; border-right: 1px solid #e5e5e7; border-bottom: 1px solid #e5e5e7; }
  .compatibility-grid > div:nth-child(2n) { border-right: 0; }
  .compatibility-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .compatibility-grid strong { font-size: 14px; }
  .minimal-heading h2 { font-size: 36px; }
  .minimal-services .minimal-heading > p:last-child { margin-top: 18px; font-size: 16px; line-height: 1.6; }
  .feature-stack { margin-top: 34px; }
  .feature-row { min-height: auto; border-radius: 22px; }
  .feature-copy { padding: 30px 24px 32px; }
  .feature-number, .live-feature-row .feature-number { margin-bottom: 22px; }
  .feature-copy h3 { font-size: 26px; }
  .live-feature-row .feature-copy p { margin-top: 13px; font-size: 16px; line-height: 1.6; }
  .live-feature-row .feature-copy .text-link { margin-top: 22px; }
  .feature-row > img { min-height: 230px; max-height: 270px; }
  .secondary-services, .guide-grid { grid-template-columns: 1fr; }
  .secondary-services { gap: 14px; margin-top: 14px; }
  .secondary-services a { min-height: 180px; padding: 28px 24px; border-radius: 22px; }
  .secondary-services h3 { margin-top: 18px; font-size: 22px; }
  .secondary-services b { top: 26px; right: 24px; }
  .heading-row { align-items: start; flex-direction: column; gap: 26px; }
  .minimal-steps li { grid-template-columns: 48px 1fr; gap: 18px; }
  .sim-split, .account-split { gap: 38px; }
  .sim-heading > p:last-of-type, .account-copy > p:not(.account-subtitle) { font-size: 16px; line-height: 1.6; }
  .sim-product-card { grid-template-columns: 1fr; border-radius: 24px; }
  .sim-product-card > img { min-height: 250px; max-height: 280px; padding: 28px; }
  .sim-product-details { padding: 30px 24px; border-top: 1px solid #e5e5e7; border-left: 0; }
  .sim-product-details h3 { margin-top: 14px; font-size: 27px; }
  .sim-product-details ul { margin-top: 24px; }
  .sim-product-details li { padding: 16px 0; }
  .minimal-accounts { padding-bottom: 68px !important; }
  .account-copy h2 { font-size: 36px; }
  .account-copy .account-subtitle, .sim-heading .sim-subtitle { font-size: 26px; }
  .account-platforms { gap: 7px; margin-top: 20px; }
  .account-visual { display: grid; min-height: auto; grid-template-columns: 1fr 1fr; gap: 12px; }
  .account-screen { position: static; width: auto; min-height: 310px; gap: 10px; padding: 22px 14px; border-radius: 22px; transform: none; }
  .account-screen-back, .account-screen-front { inset: auto; transform: none; }
  .platform-logo-row { align-items: flex-start; flex-direction: column; gap: 8px; padding: 11px; border-radius: 14px; }
  .platform-logo { width: 34px; height: 34px; flex-basis: 34px; border-radius: 10px; }
  .platform-logo-row b { font-size: 12px; }
  .account-note { margin-top: 28px; font-size: 16px; }
  .more-resources { padding: 56px 0 !important; }
  .more-resources-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .more-resources-heading h2 { font-size: 32px; }
  .more-resources-heading p { font-size: 15px; }
  .more-resources-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
  .more-resources-grid a { min-height: 178px; padding: 24px 22px; }
  .more-resources-grid h3 { margin-top: 16px; font-size: 21px; }
  .popular-guides { align-items: stretch; flex-direction: column; margin-top: 20px; }
  .popular-guides > span { margin: 0 0 2px; }
  .popular-guides a { border-radius: 14px; }
  .minimal-footer { padding: 44px 0 24px; }
  .footer-directory { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-copyright { margin-top: 34px; }
  .cta-panel { padding: 68px 24px; border-radius: 24px; }
  .cta-panel h2 { font-size: 38px; }
  .cta-actions { align-items: stretch; flex-direction: column; }
}
