/* =========================================================
   AGEphone for Biz — Design System
   Modern Tech / SaaS style
   ========================================================= */

:root {
  --navy-950: #070b16;
  --navy-900: #0b1120;
  --navy-800: #111a2e;
  --navy-700: #1b2740;

  --indigo-600: #3953A4;
  --indigo-500: #4872B9;
  --violet-500: #5691CD;
  --cyan-400: #7EB0DE;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e6eaf1;
  --slate-300: #d6dceb;
  --slate-500: #6b7590;
  --slate-600: #4b5470;
  --slate-700: #333c56;
  --slate-900: #10162a;

  --white: #ffffff;

  --gradient-brand: linear-gradient(135deg, #3953A4 0%, #5691CD 55%, #7EB0DE 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(57,83,164,0.12) 0%, rgba(86,145,205,0.12) 55%, rgba(126,176,222,0.12) 100%);
  --gradient-dark: radial-gradient(ellipse 80% 60% at 20% -10%, rgba(72,114,185,0.35), transparent 60%),
                    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(126,176,222,0.25), transparent 60%),
                    linear-gradient(180deg, #0b1120 0%, #070b16 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 22, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 22, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(16, 22, 42, 0.14);
  --shadow-glow: 0 20px 48px rgba(57,83,164,0.18);

  --container: 1180px;
  --header-h: 76px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}

h1, h2, h3, h4 { line-height: 1.35; font-weight: 800; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--indigo-600);
  background: var(--gradient-brand-soft);
  border: 1px solid rgba(72,114,185,0.18);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.eyebrow.on-dark {
  color: #C7D6ED;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--gradient-dark);
  color: var(--slate-200);
}
.section--muted { background: var(--slate-50); }

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--slate-600); font-size: 17px; }
.section--dark .section-head p { color: #aab3cc; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color .18s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.btn-primary {
  /* Safari rasterizes the gradient as a tile; with the default repeat, subpixel
     sizing lets the opposite edge of the tile wrap around as a 1px line at the
     rounded ends. Oversize the tile by 2px and center it so the seam falls
     outside the element. */
  background: var(--gradient-brand);
  background-repeat: no-repeat;
  background-size: calc(100% + 2px) calc(100% + 2px);
  background-position: 50% 50%;
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 48px rgba(57,83,164,0.28); }

.btn-ghost {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--slate-300);
}
.btn-ghost:hover { border-color: var(--indigo-500); color: var(--indigo-600); transform: translateY(-2px); }

.btn-on-dark {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,22,42,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  color: var(--slate-900);
}
.brand > span { white-space: nowrap; }
.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
/* the emblem is dark navy — give it a light chip on the dark footer */
.site-footer .brand-mark {
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
.brand small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: var(--slate-500);
  letter-spacing: 0.03em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate-700);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover, .nav-link.is-active { background: var(--slate-100); color: var(--indigo-600); }
.nav-item svg { width: 12px; height: 12px; transition: transform .15s ease; }
.nav-item:hover svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
}
.nav-dropdown a:hover { background: var(--slate-100); color: var(--indigo-600); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  background: #fff;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--slate-900);
  position: relative;
  transition: all .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 12px 20px 40px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav details { border-bottom: 1px solid var(--slate-100); }
.mobile-nav summary, .mobile-nav > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 4px; font-weight: 700; font-size: 15.5px; cursor: pointer;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav .sub-links { padding: 0 4px 12px 12px; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav .sub-links a { padding: 10px 8px; font-weight: 600; color: var(--slate-600); font-size: 14.5px; }
.mobile-nav > a { border-bottom: 1px solid var(--slate-100); }
.mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

body.nav-open { overflow: hidden; }

@media (max-width: 1220px) {
  .nav-desktop { display: none; }
  .header-actions .btn-ghost.desktop-only { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #0b0f1f;
  background-image: var(--gradient-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 92px 0 110px;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(100deg, rgba(8,12,28,.78) 0%, rgba(8,12,28,.62) 42%, rgba(8,12,28,.38) 68%, rgba(8,12,28,.22) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 20%, black, transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 3; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  margin-top: 18px;
  color: #fff;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #9FB3E0, #A9D3F0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* keeps 早変わり。from breaking mid-word */
.hero h1 .nb { display: inline-block; }
.hero p.lead {
  margin-top: 20px;
  font-size: 17.5px;
  color: #b6bfda;
  max-width: 520px;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 46px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stats div strong { display: block; font-size: 26px; font-weight: 800; color: #fff; }
.hero-stats div span { font-size: 13px; color: #8b95b8; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-phone {
  width: min(280px, 76%);
  height: auto;
  display: block;
  filter: drop-shadow(0 36px 60px rgba(0,0,0,0.5));
}
.glass-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  padding: 22px;
}
.hero-visual .glass-card--float1 {
  top: 12%; left: 2%; width: 180px; padding: 14px 18px;
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-visual .glass-card--float2 {
  bottom: 11%; right: 2%; width: 200px; padding: 16px 18px;
  animation: heroFloat 8s ease-in-out 1.2s infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual .glass-card--float1,
  .hero-visual .glass-card--float2 { animation: none; }
}
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ---------- Page header (non-home) ---------- */
.page-hero {
  position: relative;
  background: var(--gradient-dark);
  color: #fff;
  padding: 74px 0 88px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 0%, black, transparent);
}
.page-hero .container { position: relative; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: #8b95b8; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); color: #fff; margin-top: 14px; max-width: 720px; }
.page-hero p.lead { margin-top: 16px; color: #b6bfda; max-width: 620px; font-size: 16.5px; }
.page-hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-icon {
  width: 68px; height: 68px; border-radius: 18px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  margin-bottom: 4px;
}
.page-hero-icon svg { width: 32px; height: 32px; color: #fff; }

.page-hero,
.product-hero,
.rcp-hero,
.ab4-hero,
.ptn-hero,
.dl-hero,
.ct-hero {
  isolation: isolate;
}
.page-hero::before,
.product-hero::before,
.rcp-hero::before,
.ab4-hero::before,
.ptn-hero::before,
.dl-hero::before,
.ct-hero::before {
  z-index: 1;
}
.page-hero::after,
.product-hero::after,
.rcp-hero::after,
.ab4-hero::after,
.ptn-hero::after,
.dl-hero::after,
.ct-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/photos/hero-tech-layer.jpg") center / cover no-repeat;
  opacity: .18;
  mix-blend-mode: screen;
  pointer-events: none;
}
.page-hero .container,
.product-hero .container,
.rcp-hero .container,
.ab4-hero .container,
.ptn-hero .container,
.dl-hero .container,
.ct-hero .container {
  z-index: 2;
}

/* ---------- Grid & Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(72,114,185,0.25); }
.card .icon-box {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--gradient-brand-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon-box svg { width: 24px; height: 24px; color: var(--indigo-600); }
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--slate-600); font-size: 15px; }

.card--dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #dbe1f3;
}
.card--dark h3 { color: #fff; }
.card--dark p { color: #a9b2cf; }
.card--dark .icon-box { background: rgba(255,255,255,0.08); }
.card--dark .icon-box svg { color: #C7D6ED; }

.list-check { display: flex; flex-direction: column; gap: 14px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--slate-700); }
.list-check li svg { width: 20px; height: 20px; color: var(--indigo-600); flex-shrink: 0; margin-top: 2px; }
.section--dark .list-check li { color: #cfd6ec; }

.tag {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-full);
  background: var(--slate-100); color: var(--slate-600);
  margin: 3px 6px 3px 0;
}

.badge-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}

/* ---------- Feature row (image/text alternating) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  border-radius: var(--radius-lg);
  background: var(--gradient-brand-soft);
  border: 1px solid var(--slate-200);
  padding: 32px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-media svg { width: 100%; max-width: 320px; }
.feature-media.is-photo {
  padding: 0;
  overflow: hidden;
  min-height: 0;
  display: block;
  background: var(--slate-900);
}
.feature-media.is-photo img,
.feature-media.is-photo video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.feature-media.is-photo.is-product {
  background: var(--slate-50);
  padding: 28px;
}
.feature-media.is-photo.is-product img {
  object-fit: contain;
  min-height: 220px;
}
.feature-media.is-photo.is-jotform-demo {
  width: min(100%, 320px);
  justify-self: center;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.feature-media.is-photo.is-jotform-demo video {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 320 / 568;
  object-fit: contain;
  background: var(--slate-50);
}
.feature-text h2 { font-size: clamp(22px, 3vw, 30px); margin-top: 12px; }
.feature-text p { color: var(--slate-600); margin-top: 16px; font-size: 16px; }

/* ---------- Real-photo showcases (screenshots / product photos) ---------- */
.shot-figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.shot-figure img { width: 100%; display: block; }
.shot-figure figcaption {
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate-700);
  border-top: 1px solid var(--slate-100);
}
.diagram-figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.diagram-figure img { width: 100%; display: block; border-radius: 8px; }
.diagram-figure--cloud-case {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--slate-50);
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 10px;
}
.card-media-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.card-media-row img {
  width: 220px;
  max-width: 100%;
  border-radius: 12px;
  flex-shrink: 0;
}
.card-media-row .card-media-text { flex: 1; min-width: 220px; }

/* ---------- Pricing / plan cards ---------- */
.plan-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.plan-card.featured {
  border: 1px solid transparent;
  background: linear-gradient(#fff,#fff) padding-box, var(--gradient-brand) border-box;
  box-shadow: var(--shadow-lg);
}
.plan-card .plan-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
}
.plan-card .plan-icon svg { width: 28px; height: 28px; color: #fff; }
.plan-card .plan-icon--app {
  background: #fff;
  overflow: hidden;
}
.plan-card .plan-icon--app img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.plan-card h3 { font-size: 20px; }
.plan-card .plan-price { font-size: 28px; font-weight: 800; }
.plan-card .plan-price small { font-size: 13px; font-weight: 600; color: var(--slate-500); }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--slate-200); }
table.specs { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 480px; }
table.specs th, table.specs td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--slate-200); }
table.specs th { background: var(--slate-50); width: 30%; font-weight: 700; color: var(--slate-700); }
table.specs tr:last-child td, table.specs tr:last-child th { border-bottom: none; }

/* ---------- Download card ---------- */
.download-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.download-card .platform-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--slate-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.download-card .platform-icon svg { width: 24px; height: 24px; }
.download-card .meta { font-size: 13px; color: var(--slate-500); }
.download-card .btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: 28px;
  background: var(--gradient-dark);
  color: #fff;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-brand-soft);
  opacity: .25;
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(24px, 3.2vw, 34px); color: #fff; }
.cta-band p { margin-top: 14px; color: #b6bfda; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #9aa3c2;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 14px; color: #7d87a8; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 13.5px; margin-bottom: 16px; letter-spacing: .03em; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: #9aa3c2; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #6b7590;
}
.footer-trademark { font-size: 12.5px; color: #5c6584; margin-top: 20px; line-height: 1.8; }

/* company marks sit directly on the dark footer */
.footer-ageet {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  opacity: .96;
  transition: transform .18s ease, opacity .18s ease;
}
.footer-ageet:hover { transform: translateY(-2px); opacity: 1; }
.footer-ageet img { width: 88px; height: auto; display: block; }
.footer-col a.footer-privacy-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7d6ed;
  margin-bottom: 16px;
  max-width: 220px;
  transition: transform .18s ease, color .18s ease;
}
.footer-col a.footer-privacy-mark:hover {
  color: #fff;
  transform: translateY(-2px);
}
.footer-privacy-mark img {
  width: 56px;
  height: 56px;
  display: block;
  flex: 0 0 auto;
}
.footer-privacy-mark span {
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 800;
}

/* =========================================================
   AGEphone Cloud — flagship product page
   Accent palette drawn from the real app icon
   (amber #F5A100 → orange #ED6A1F → deep orange #E8590F)
   ========================================================= */
:root {
  --apc-amber: #F9A825;
  --apc-orange: #F07818;
  --apc-deep: #E8590F;
  --gradient-apc: linear-gradient(135deg, #F9A825 0%, #F07818 55%, #E8590F 100%);
}

.product-hero {
  position: relative;
  color: #fff;
  padding: 72px 0 96px;
  overflow: hidden;
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 52% 44% at 82% 8%, rgba(240,120,24,0.28), transparent 65%),
    radial-gradient(ellipse 46% 40% at 4% 96%, rgba(232,89,15,0.16), transparent 62%),
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(72,114,185,0.30), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
}
.product-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 75% 75% at 40% 0%, black, transparent);
  pointer-events: none;
}
.product-hero .container { position: relative; }
.product-hero .breadcrumb { margin-bottom: 30px; }

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

/* staggered load-in (independent from scroll .reveal) */
@keyframes apcRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.apc-rise { opacity: 0; animation: apcRise .8s cubic-bezier(.22,.7,.3,1) forwards; animation-delay: var(--d, 0s); }
@media (prefers-reduced-motion: reduce) {
  .apc-rise { animation: none; opacity: 1; }
}

.product-ident {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.app-icon {
  width: 84px; height: 84px;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 12px 32px rgba(232,89,15,0.45),
    0 2px 8px rgba(0,0,0,0.4);
}
.product-ident .product-kicker {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
.product-ident .product-os {
  display: inline-flex;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #FFD9A8;
  background: rgba(240,120,24,0.14);
  border: 1px solid rgba(249,168,37,0.35);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}

.product-hero h1 {
  font-size: clamp(30px, 4.4vw, 50px);
  color: #fff;
  max-width: 640px;
}
.product-hero h1 .grad-apc {
  background: linear-gradient(120deg, #FFC24B 0%, #FF9A3D 55%, #FF7A2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-hero p.lead { margin-top: 20px; color: #b6bfda; max-width: 560px; font-size: 17px; }

.btn-apc {
  background: var(--gradient-apc);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(249,168,37,0.28), 0 18px 40px rgba(232,89,15,0.38);
}
.btn-apc:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(232,89,15,0.5); }

.trust-chips {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #dbe1f3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  backdrop-filter: blur(6px);
}
.trust-chips svg { width: 15px; height: 15px; color: var(--apc-amber); flex-shrink: 0; }

/* phone mockup with real screenshot */
.product-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
/* two real app screens side by side — the PNGs already contain the
   device bezel (transparent around it), so only depth and glow are added */
.phone-duo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: min(470px, 100%);
}
.phone-duo img {
  width: calc(50% - 10px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 34px 60px rgba(0,0,0,0.55))
    drop-shadow(0 0 60px rgba(240,120,24,0.20));
}
.phone-duo img:last-child { margin-top: 40px; }
.product-hero-visual .glass-card--float1 {
  top: -3%; left: -8%;
  width: 218px; padding: 14px 16px;
  animation: heroFloat 7s ease-in-out infinite;
}
.product-hero-visual .glass-card--float2 {
  bottom: -5%; right: -8%;
  width: 196px; padding: 14px 16px;
  animation: heroFloat 8s ease-in-out 1.4s infinite;
}
.glass-card .gc-title {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; color: #fff;
}
.glass-card .gc-sub { margin-top: 5px; font-size: 12px; color: #aab3cc; }

/* orange eyebrow variant for the flagship page */
.eyebrow--apc {
  color: #C2410C;
  background: linear-gradient(135deg, rgba(249,168,37,0.13), rgba(232,89,15,0.10));
  border-color: rgba(240,120,24,0.28);
}
.eyebrow--apc.on-dark {
  color: #FFD9A8;
  background: rgba(240,120,24,0.12);
  border-color: rgba(249,168,37,0.3);
}

@media (max-width: 900px) {
  .product-hero { padding: 56px 0 72px; }
  .product-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-hero-visual { margin-top: 8px; }
  .product-hero-visual .glass-card--float1 { left: 0; }
  .product-hero-visual .glass-card--float2 { right: 0; }
}
@media (max-width: 620px) {
  .app-icon { width: 68px; height: 68px; border-radius: 16px; }
  .product-ident .product-kicker { font-size: 19px; }
  .phone-duo { gap: 14px; }
  .phone-duo img { width: calc(50% - 7px); }
  .phone-duo img:last-child { margin-top: 28px; }
}

/* ---------- Flagship page: section upgrades ---------- */

/* photo media with a floating live-status chip */
.feature-media.is-photo { position: relative; }
.media-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-900);
  box-shadow: var(--shadow-md);
}
.media-chip .pulse-dot { flex-shrink: 0; }

/* slim announcement band (iOS 26 Ready) */
.ios-band {
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240,120,24,0.25);
  background: linear-gradient(135deg, rgba(249,168,37,0.09), rgba(232,89,15,0.04)), #fff;
  padding: 26px 30px;
  position: relative;
  overflow: hidden;
}
.ios-band::after {
  content: "26";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 130px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--gradient-apc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.16;
  pointer-events: none;
}
.ios-band .icon-box {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--gradient-apc);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(232,89,15,0.3);
}
.ios-band .icon-box svg { width: 24px; height: 24px; color: #fff; }
.ios-band h3 { font-size: 17px; margin-bottom: 4px; }
.ios-band p { color: var(--slate-600); font-size: 14.5px; max-width: 760px; }

/* case study — dark banded section with big gradient stats */
.case-study {
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 50% 42% at 88% 8%, rgba(240,120,24,0.20), transparent 65%),
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(72,114,185,0.22), transparent 62%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
  color: var(--slate-200);
}
.case-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}
.case-text h2 { font-size: clamp(26px, 3.4vw, 38px); color: #fff; margin-top: 14px; }
.case-text > p { margin-top: 16px; color: #aab3cc; font-size: 16px; }
.case-study .small-print { color: #6b7590; }
.case-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.case-stats div strong {
  display: block;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: linear-gradient(120deg, #FFC24B 0%, #FF9A3D 55%, #FF7A2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case-stats div strong small { font-size: 20px; font-weight: 800; }
.case-stats div span { display: block; margin-top: 2px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: #8b95b8; }
.case-visual { position: relative; }
.case-visual > img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5);
}
.case-visual .glass-card {
  left: -20px;
  bottom: 28px;
  width: 250px;
  padding: 16px 18px;
  animation: heroFloat 7s ease-in-out infinite;
}
.case-study .diagram-figure { border-color: rgba(255,255,255,0.14); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }

/* feature chips — scannable spec tags on the dark section */
.func-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.func-head .icon-box { margin: 0; width: 46px; height: 46px; flex-shrink: 0; }
.func-head h3 { margin-bottom: 0; }
.func-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.func-chips span {
  font-size: 13px;
  font-weight: 600;
  color: #cfd6ec;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  padding: 6px 13px;
  border-radius: var(--radius-full);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.func-chips span:hover {
  border-color: rgba(249,168,37,0.55);
  color: #FFD9A8;
  background: rgba(240,120,24,0.09);
}

/* QR provisioning card with animated scan line */
.qr-card { display: flex; gap: 28px; align-items: center; }
.qr-visual {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  padding: 15px;
  position: relative;
  overflow: hidden;
}
.qr-visual img { width: 100%; height: 100%; display: block; }
.qr-visual::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 12px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,120,24,0.9), transparent);
  box-shadow: 0 0 14px rgba(240,120,24,0.55);
  animation: qrScan 3.2s ease-in-out infinite;
}
@keyframes qrScan {
  0%, 100% { top: 12px; }
  50% { top: calc(100% - 15px); }
}
@media (prefers-reduced-motion: reduce) {
  .qr-visual::after { animation: none; }
  .case-visual .glass-card { animation: none; }
}

/* card with a photo header */
.card.has-media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card.has-media .card-media-img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  display: block;
}
.card.has-media .card-body { padding: 24px 30px 30px; }

/* download cards — platform-branded tiles + hover accent */
.download-card { position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.download-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-apc);
  opacity: 0;
  transition: opacity .2s ease;
}
.download-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(240,120,24,0.3); }
.download-card:hover::before { opacity: 1; }
.platform-icon.win { background: linear-gradient(135deg, #2A7DE1, #0A4FA8); }
.platform-icon.mac, .platform-icon.ios { background: linear-gradient(135deg, #3a4150, #14161c); }
.platform-icon.android { background: linear-gradient(135deg, #2FBE72, #178A52); }

/* CTA band with team photo backdrop */
.cta-band--photo {
  background-image:
    linear-gradient(100deg, rgba(8,12,28,0.92) 0%, rgba(8,12,28,0.78) 55%, rgba(8,12,28,0.62) 100%),
    url("../assets/photos/cloud-cta-team.jpg");
  background-size: cover;
  background-position: center 32%;
}
.cta-band--photo::before {
  background: radial-gradient(ellipse 55% 90% at 88% 15%, rgba(240,120,24,0.3), transparent 62%);
  opacity: 1;
}

@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-visual .glass-card { left: 12px; }
  .case-visual > img { min-height: 300px; }
}
@media (max-width: 620px) {
  .qr-card { flex-direction: column; align-items: flex-start; }
  .ios-band { padding: 22px; gap: 16px; }
  .ios-band::after { font-size: 90px; right: 12px; }
  .case-stats { gap: 26px; }
  .case-stats div strong { font-size: 36px; }
}

/* ---------- Flagship page: cinematic layer ---------- */

/* hero — luminous voice-network waves rising from the bottom edge */
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/photos/cloud-net-waves.jpg") center bottom / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.38;
  -webkit-mask-image: radial-gradient(ellipse 115% 100% at 82% 100%, black 26%, transparent 72%);
  mask-image: radial-gradient(ellipse 115% 100% at 82% 100%, black 26%, transparent 72%);
  animation: apcWaveDrift 26s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes apcWaveDrift {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-16px) scale(1.06); }
}

/* hero — app screens breathe instead of sitting still */
.phone-duo img { animation: heroFloat 9s ease-in-out infinite; }
.phone-duo img:last-child { animation-delay: 1.6s; animation-duration: 10s; }

/* hero — slow shimmer across the gradient headline */
.product-hero h1 .grad-apc {
  background-image: linear-gradient(120deg, #FFC24B 0%, #FF9A3D 30%, #FF7A2E 55%, #FFC24B 85%);
  background-size: 220% 100%;
  animation: apcShimmer 7s ease-in-out infinite;
}
@keyframes apcShimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 90% 0; }
}

/* photo frames — slow zoom on hover, hairline inner ring for depth */
.apc-photo { position: relative; }
.apc-photo img { transition: transform 0.9s cubic-bezier(.22,.7,.3,1); }
.apc-photo:hover img { transform: scale(1.045); }
.apc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09), inset 0 -60px 80px -50px rgba(7,11,22,0.55);
  pointer-events: none;
}
.apc-photo .media-chip,
.apc-photo .glass-card { z-index: 1; }

/* full-bleed mobility band — one phone, every place becomes an extension */
.apc-anywhere {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #070b16;
  border-top: 1px solid rgba(249,168,37,0.18);
  border-bottom: 1px solid rgba(249,168,37,0.18);
}
.apc-anywhere-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/photos/cloud-anywhere-call.jpg") 24% top / cover no-repeat;
  transform-origin: 28% 30%;
  animation: apcSlowZoom 32s ease-in-out infinite alternate;
}
@keyframes apcSlowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.apc-anywhere-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(265deg, rgba(7,11,22,0.93) 0%, rgba(7,11,22,0.72) 40%, rgba(7,11,22,0.24) 74%, rgba(7,11,22,0.08) 100%),
    linear-gradient(180deg, rgba(7,11,22,0.5) 0%, transparent 26%, transparent 72%, rgba(7,11,22,0.55) 100%);
}
.apc-anywhere .container { position: relative; }
.apc-anywhere-inner {
  margin-left: auto;
  max-width: 560px;
  padding: 104px 0 112px;
}
.apc-anywhere h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  color: #fff;
  margin-top: 16px;
}
.apc-anywhere .grad-apc {
  background: linear-gradient(120deg, #FFC24B 0%, #FF9A3D 55%, #FF7A2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.apc-anywhere p {
  margin-top: 18px;
  color: #c3cbe3;
  font-size: 16.5px;
  max-width: 480px;
}
.apc-place-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.apc-place-chips > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(10,14,28,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.apc-place-chips .pulse-dot { flex-shrink: 0; }

/* features section — network texture behind the chips */
.apc-func { position: relative; overflow: hidden; }
.apc-func::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/photos/cloud-net-waves.jpg") center bottom / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.15;
  -webkit-mask-image: linear-gradient(180deg, transparent 20%, black 75%);
  mask-image: linear-gradient(180deg, transparent 20%, black 75%);
  pointer-events: none;
}
.apc-func .container { position: relative; }

/* PUSH story row — quiet phone on a hotel table, still on duty */
.apc-push-row {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 56px;
  align-items: center;
  margin: 4px 0 60px;
}
.apc-push-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5);
}
.apc-push-media img { width: 100%; height: auto; display: block; }
.apc-incoming {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px 13px 14px;
  background: rgba(12,16,30,0.6);
}
.apc-ring {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-apc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(232,89,15,0.45);
}
.apc-ring svg { width: 20px; height: 20px; color: #fff; }
.apc-ring::before,
.apc-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(249,168,37,0.75);
  animation: apcRipple 2.6s cubic-bezier(0.2,0.6,0.36,1) infinite;
}
.apc-ring::after { animation-delay: 1.3s; }
@keyframes apcRipple {
  from { transform: scale(1); opacity: 0.9; }
  to   { transform: scale(2.2); opacity: 0; }
}
.apc-push-text .eyebrow { margin-bottom: 0; }
.apc-push-text h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  color: #fff;
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.apc-push-text p {
  margin-top: 14px;
  color: #aab3cc;
  font-size: 15.5px;
}

/* media card zoom (scoped to flagship cards) */
.has-media.apc-zoom .card-media-img {
  height: 200px;
  transition: transform 0.8s cubic-bezier(.22,.7,.3,1);
}
.has-media.apc-zoom:hover .card-media-img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .product-hero::after,
  .phone-duo img,
  .product-hero h1 .grad-apc,
  .apc-anywhere-bg,
  .apc-ring::before,
  .apc-ring::after { animation: none; }
}
@media (max-width: 900px) {
  .apc-anywhere-inner { max-width: 620px; padding: 84px 0 92px; }
  .apc-anywhere-bg { background-position: 30% center; }
  .apc-anywhere-bg::after {
    background:
      linear-gradient(200deg, rgba(7,11,22,0.9) 0%, rgba(7,11,22,0.72) 55%, rgba(7,11,22,0.45) 100%),
      linear-gradient(180deg, rgba(7,11,22,0.5), transparent 30%, transparent 70%, rgba(7,11,22,0.55));
  }
  .apc-push-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 44px; }
}
@media (max-width: 620px) {
  .apc-anywhere-inner { padding: 64px 0 72px; }
  .apc-incoming { left: 12px; bottom: 12px; gap: 11px; padding: 11px 16px 11px 12px; }
  .apc-ring { width: 36px; height: 36px; }
  .apc-ring svg { width: 17px; height: 17px; }
}

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; color: var(--slate-700); }
.field label .req { color: #ef4444; font-weight: 700; margin-left: 4px; }
.field input, .field select, .field textarea {
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--slate-900);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 4px rgba(72,114,185,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--slate-500); margin-top: 6px; }

/* ---------- Accordion (privacy / faq-like) ---------- */
.acc-item { border-bottom: 1px solid var(--slate-200); }
.acc-item summary {
  padding: 20px 4px; font-weight: 700; font-size: 16px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item[open] summary { color: var(--indigo-600); }
.acc-body { padding: 0 4px 22px; color: var(--slate-600); font-size: 15px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.divider { height: 1px; background: var(--slate-200); border: none; margin: 0; }
.small-print { font-size: 13px; color: var(--slate-500); }

/* ---------- Legal content (privacy) ---------- */
.legal h2 { font-size: 19px; margin-top: 36px; margin-bottom: 12px; }
.legal h2.os-group { font-size: 23px; margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--slate-200); }
.legal h3 { font-size: 16px; margin-top: 24px; margin-bottom: 8px; color: var(--slate-900); font-weight: 700; }
.legal p, .legal li { color: var(--slate-600); font-size: 15px; }
.legal p.license-text { white-space: pre-wrap; font-size: 13px; line-height: 1.7; }
.legal ol, .legal ul { padding-left: 20px; list-style: decimal; display: block; margin-top: 8px;}
.legal ul { list-style: disc; }
.legal li { margin-bottom: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-media { order: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  /* several pages set a two-column layout via inline style="grid-template-columns: ..."
     (contact form+sidebar, cta-band text+actions, dashboard cards); inline styles
     outrank stylesheet rules, so !important is required to collapse them on narrow screens */
  .grid, .cta-band > div[style] { grid-template-columns: 1fr !important; }
}
@media (max-width: 620px) {
  /* keep the brand on one line inside the 76px header */
  .brand { font-size: 14.5px; gap: 8px; white-space: nowrap; }
  .brand-mark { width: 38px; height: 38px; }
  .site-header .brand small { display: none; }
  .site-header .container { padding: 0 16px; gap: 12px; }
  .header-actions { gap: 8px; }
  .header-actions .btn-sm { padding: 9px 14px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 64px 0 72px; }
  .hero-actions, .btn-row { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .btn-row .btn { width: 100%; white-space: normal; text-align: center; }
}
@media (max-width: 360px) {
  .site-header .container { padding: 0 12px; gap: 8px; }
  .header-actions .btn-primary.btn-sm { display: none; }
}

/* =========================================================
   Per-page blocks (added in site-wide design upgrade)
   ========================================================= */

/* ========== index.html page ========== */
/* Home page upgrades — brand indigo/cyan accent only (no new hues).
   Appended after style.css; every new class is prefixed "home-". */

/* -- hero: big gradient stat numbers with dividers -- */
.home-hero-stats { margin-top: 42px; gap: 0; }
.home-hero-stats > div { padding: 2px 30px; border-left: 1px solid rgba(255,255,255,0.14); }
.home-hero-stats > div:first-child { border-left: none; padding-left: 0; }
.home-hero-stats div strong {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(120deg, #ffffff 0%, #A9C6EE 55%, #7EB0DE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero-stats div span { font-size: 12.5px; letter-spacing: 0.03em; }

/* -- gradient heading fragments (light / dark backgrounds) -- */
.home-grad {
  background: linear-gradient(120deg, #3953A4 0%, #4872B9 55%, #5691CD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-grad-ondark {
  background: linear-gradient(120deg, #9FB3E0 0%, #A9D3F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -- "why us" intro: section head beside a real office photo -- */
.home-why .feature-text h2 { font-size: clamp(26px, 3.4vw, 38px); }
.home-why .feature-text p { font-size: 17px; }
.home-why .feature-media.is-photo img { min-height: 340px; }

/* -- series selector: plan cards with photo headers -- */
.home-plan-card {
  padding: 0;
  gap: 0;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.home-plan-media { position: relative; }
.home-plan-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}
.home-plan-media--face img { object-position: 50% 28%; }
.home-plan-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,17,32,0) 50%, rgba(11,17,32,0.38) 100%);
  pointer-events: none;
}
.home-plan-body {
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.home-plan-body .plan-icon {
  margin-top: -28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #fff, var(--shadow-glow);
}
.home-plan-body .btn { margin-top: auto; align-self: flex-start; }

/* -- AGEphone Cloud intro: real app screen on a dark branded panel -- */
.home-app-shot {
  position: relative;
  overflow: hidden;
  padding: 44px 32px;
  border-color: rgba(7,11,22,0.5);
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 70% 60% at 82% 0%, rgba(86,145,205,0.35), transparent 62%),
    radial-gradient(ellipse 60% 55% at 8% 100%, rgba(57,83,164,0.4), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
}
.home-app-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 25%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 25%, black, transparent);
  pointer-events: none;
}
.home-app-shot img {
  position: relative;
  width: min(228px, 58%);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 46px rgba(86,145,205,0.22));
}
.home-app-shot .home-app-chip {
  left: 22px;
  bottom: 24px;
  width: auto;
  padding: 12px 16px;
  animation: heroFloat 7s ease-in-out infinite;
}

/* -- light & dark card grids: brand gradient accent bar on hover -- */
.home-tile { position: relative; overflow: hidden; }
.home-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.home-tile:hover::before { opacity: 1; }
.card--dark.home-tile:hover { border-color: rgba(126,176,222,0.4); }

/* -- disaster section: photo strip backdrop -- */
.home-disaster-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #0b1120;
  background-image:
    linear-gradient(100deg, rgba(8,12,28,0.94) 0%, rgba(8,12,28,0.86) 52%, rgba(8,12,28,0.66) 100%),
    url("../assets/photos/home-disaster-strip.jpg");
  background-size: cover;
  background-position: center 50%;
}
.home-disaster-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 88% 10%, rgba(86,145,205,0.28), transparent 62%),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  pointer-events: none;
}
.home-disaster-strip .container {
  position: relative;
  z-index: 1;
}
.home-disaster-strip .eyebrow {
  color: #C7D6ED;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.home-disaster-strip .feature-text h2 {
  color: #fff;
}
.home-disaster-strip .feature-text p {
  color: #cbd5e1;
}
.home-disaster-strip .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}
.home-disaster-strip .btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.38);
}
.home-disaster-strip .feature-media.is-photo.is-product {
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.34);
  box-shadow: 0 34px 70px rgba(0,0,0,0.38);
}

/* -- option services: horizontal icon cards -- */
.home-option { display: flex; align-items: flex-start; gap: 20px; }
.home-option .icon-box {
  margin: 0;
  flex-shrink: 0;
  background: var(--gradient-brand);
  box-shadow: 0 12px 26px rgba(57,83,164,0.28);
}
.home-option .icon-box svg { color: #fff; }
.home-option h3 { font-size: 17px; margin-bottom: 8px; }

/* -- closing CTA: Tokyo-dusk photo band (page-specific variant) -- */
.home-cta {
  background-image:
    linear-gradient(100deg, rgba(8,12,28,0.93) 0%, rgba(8,12,28,0.8) 50%, rgba(8,12,28,0.6) 100%),
    url("../assets/photos/home-city-dusk.jpg");
  background-size: cover;
  background-position: center 62%;
}
.home-cta::before {
  background:
    radial-gradient(ellipse 60% 90% at 88% 10%, rgba(86,145,205,0.32), transparent 62%),
    radial-gradient(ellipse 50% 80% at 4% 100%, rgba(57,83,164,0.28), transparent 60%);
  opacity: 1;
}

/* -- responsive -- */
@media (max-width: 900px) {
  .home-why .feature-media.is-photo img { min-height: 260px; }
}
@media (max-width: 620px) {
  .home-hero-stats { gap: 14px 28px; }
  .home-hero-stats > div { padding: 0; border-left: none; }
  .home-hero-stats div strong { font-size: 26px; }
  .home-app-shot { padding: 34px 22px; }
  .home-app-shot .home-app-chip { left: 14px; bottom: 14px; padding: 10px 14px; }
  .home-plan-body { padding: 0 24px 26px; }
  .home-why .feature-media.is-photo img { min-height: 220px; }
  .home-option { gap: 16px; }
}

/* -- reduced motion: stop the float / pulse effects added on this page -- */
@media (prefers-reduced-motion: reduce) {
  .home-app-shot .home-app-chip { animation: none; }
  .home-why .pulse-dot,
  .home-app-shot .pulse-dot { animation: none; }
}

/* ========== plusphonebook.html page ========== */
/* ＋電話帳 Cloud — emerald accent (page-scoped, all classes prefixed pbc-) */
:root {
  --pbc-300: #6EE7B7;
  --pbc-400: #34D399;
  --pbc-500: #10B981;
  --pbc-600: #059669;
  --pbc-700: #047857;
  --pbc-gradient: linear-gradient(135deg, #34D399 0%, #10B981 45%, #059669 100%);
  --pbc-gradient-text: linear-gradient(120deg, #6EE7B7 0%, #34D399 45%, #10B981 100%);
}

/* ---------- hero (product-hero style, emerald glow) ---------- */
.page-hero.pbc-hero {
  padding: 72px 0 96px;
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 52% 44% at 82% 6%, rgba(16,185,129,0.26), transparent 65%),
    radial-gradient(ellipse 46% 40% at 4% 100%, rgba(5,150,105,0.18), transparent 62%),
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(72,114,185,0.24), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
}
.pbc-hero .breadcrumb { margin-bottom: 28px; }
.pbc-hero h1 { font-size: clamp(30px, 4.4vw, 50px); }
.pbc-hero .page-hero-icon {
  background: var(--pbc-gradient);
  box-shadow: 0 0 0 1px rgba(52,211,153,0.25), 0 14px 34px rgba(5,150,105,0.4);
}

.pbc-grad {
  background: var(--pbc-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* darker variant for light backgrounds */
.pbc-grad-deep {
  background: linear-gradient(120deg, #059669 0%, #0d9488 60%, #047857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pbc-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.pbc-hero-visual { position: relative; }
.pbc-hero-visual > img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 30px 55px rgba(0,0,0,0.55))
    drop-shadow(0 0 60px rgba(16,185,129,0.18));
}
.pbc-hero-visual .glass-card.pbc-float1 {
  top: -6%; left: -3%;
  width: 236px; padding: 14px 16px;
  animation: pbcFloat 7s ease-in-out infinite;
}
.pbc-hero-visual .glass-card.pbc-float2 {
  bottom: -8%; right: -2%;
  width: 236px; padding: 14px 16px;
  animation: pbcFloat 8s ease-in-out 1.4s infinite;
}
@keyframes pbcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- emerald CTA button ---------- */
.btn.pbc-btn {
  background: var(--pbc-gradient);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(52,211,153,0.28), 0 18px 40px rgba(5,150,105,0.38);
}
.btn.pbc-btn:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(5,150,105,0.5); }

/* ---------- page-scoped accent overrides ---------- */
.pbc-scope .eyebrow {
  color: var(--pbc-700);
  background: linear-gradient(135deg, rgba(52,211,153,0.13), rgba(5,150,105,0.09));
  border-color: rgba(16,185,129,0.28);
}
.pbc-scope .eyebrow.on-dark {
  color: #A7F3D0;
  background: rgba(16,185,129,0.12);
  border-color: rgba(52,211,153,0.3);
}
.pbc-scope .card .icon-box {
  background: linear-gradient(135deg, rgba(52,211,153,0.16), rgba(5,150,105,0.10));
}
.pbc-scope .card .icon-box svg { color: var(--pbc-600); }
.pbc-scope .card:hover { border-color: rgba(16,185,129,0.3); }
.pbc-scope .card--dark .icon-box { background: rgba(16,185,129,0.14); }
.pbc-scope .card--dark .icon-box svg { color: var(--pbc-300); }
.pbc-scope .media-chip { color: var(--slate-900); }
.pbc-link { color: var(--pbc-600); font-weight: 700; }
.pbc-link:hover { text-decoration: underline; }

/* download cards: hover accent bar re-tinted emerald */
.pbc-scope .download-card::before { background: var(--pbc-gradient); }
.pbc-scope .download-card:hover { border-color: rgba(16,185,129,0.35); }

/* ---------- iOS 26 card with gradient numeral watermark ---------- */
.card.pbc-card-26 {
  position: relative;
  overflow: hidden;
  border-color: rgba(16,185,129,0.25);
  background: linear-gradient(135deg, rgba(52,211,153,0.10), rgba(5,150,105,0.03)), #fff;
}
.card.pbc-card-26::after {
  content: "26";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 110px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--pbc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.15;
  pointer-events: none;
}
.card.pbc-card-26 > * { position: relative; }

/* ---------- sync demo media: keep the chip inside the product frame ---------- */
.pbc-sync-media .media-chip { left: 40px; bottom: 40px; }

/* ---------- feature chips on the dark section (emerald hover) ---------- */
.pbc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pbc-chips span {
  font-size: 13px;
  font-weight: 600;
  color: #cfd6ec;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  padding: 6px 13px;
  border-radius: var(--radius-full);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.pbc-chips span:hover {
  border-color: rgba(52,211,153,0.55);
  color: #A7F3D0;
  background: rgba(16,185,129,0.10);
}

/* ---------- hero glass cards: darken for legibility over the bright product shot ---------- */
.pbc-hero-visual .glass-card {
  background: rgba(9, 15, 28, 0.6);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

/* ---------- problem band: scattered contacts (light, full-bleed papers photo) ---------- */
.pbc-problem {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) 0;
  background: #eef1f6;
}
.pbc-problem-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}
.pbc-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(94deg,
    rgba(244, 247, 250, 0.97) 0%,
    rgba(244, 247, 250, 0.94) 42%,
    rgba(244, 247, 250, 0.62) 66%,
    rgba(244, 247, 250, 0.18) 100%);
}
.pbc-problem-copy { max-width: 620px; }
.pbc-problem-copy h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-top: 14px;
  color: var(--slate-900);
}
.pbc-problem-copy p {
  margin-top: 18px;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 2;
}

/* ---------- dark function section: emerald signal-field backdrop ---------- */
.pbc-func {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pbc-func::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("../assets/photos/plusvirtual-signal-field.webp") center top / cover no-repeat;
  opacity: 0.2;
  filter: hue-rotate(-16deg) saturate(0.75);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.35) 55%, transparent 88%);
          mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.35) 55%, transparent 88%);
}

/* ---------- CTA band with team photo + emerald glow ---------- */
.cta-band.pbc-cta {
  background-image:
    linear-gradient(100deg, rgba(8,12,28,0.92) 0%, rgba(8,12,28,0.8) 55%, rgba(8,12,28,0.66) 100%),
    url("../assets/photos/pbc-cta-team.jpg");
  background-size: cover;
  background-position: center 40%;
}
.cta-band.pbc-cta::before {
  background: radial-gradient(ellipse 55% 90% at 88% 15%, rgba(16,185,129,0.3), transparent 62%);
  opacity: 1;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .page-hero.pbc-hero { padding: 56px 0 76px; }
  .pbc-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .pbc-hero-visual { margin-top: 8px; }
  .pbc-hero-visual .glass-card.pbc-float1 { left: 0; top: -14px; }
  .pbc-hero-visual .glass-card.pbc-float2 { right: 0; bottom: -14px; }
}
@media (max-width: 900px) {
  .pbc-problem { padding: 64px 0 72px; }
  .pbc-problem-bg { object-position: 72% center; }
  .pbc-problem::before {
    background: linear-gradient(180deg,
      rgba(244, 247, 250, 0.94) 0%,
      rgba(244, 247, 250, 0.9) 55%,
      rgba(244, 247, 250, 0.82) 100%);
  }
}
@media (max-width: 620px) {
  .pbc-hero-visual .glass-card.pbc-float1 { width: 178px; padding: 12px 14px; }
  .pbc-hero-visual .glass-card.pbc-float2 { width: 184px; padding: 12px 14px; }
  .card.pbc-card-26::after { font-size: 84px; right: 12px; }
  .pbc-sync-media .media-chip { left: 34px; bottom: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .pbc-hero-visual .glass-card.pbc-float1,
  .pbc-hero-visual .glass-card.pbc-float2 { animation: none; }
}

/* ========== reception.html page ========== */
/* ＋受付電話 Cloud — teal/cyan accent, iPad-clean look.
   All classes are rcp- prefixed; shared classes from the design
   system (.section, .feature-row, .media-chip, .glass-card, .reveal,
   .apc-rise motion utility, etc.) are reused as-is. */

:root {
  --rcp-teal: #14B8A6;
  --rcp-cyan: #0891B2;
  --rcp-deep: #0E7490;
  --gradient-rcp: linear-gradient(135deg, #2DD4BF 0%, #14B8A6 45%, #0891B2 100%);
  --gradient-rcp-soft: linear-gradient(135deg, rgba(45,212,191,0.14) 0%, rgba(20,184,166,0.11) 50%, rgba(8,145,178,0.10) 100%);
}

/* ---------- hero ---------- */
.rcp-hero {
  position: relative;
  color: #fff;
  padding: 72px 0 96px;
  overflow: hidden;
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 52% 44% at 84% 6%, rgba(20,184,166,0.26), transparent 65%),
    radial-gradient(ellipse 46% 40% at 2% 96%, rgba(8,145,178,0.18), transparent 62%),
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(72,114,185,0.28), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
}
.rcp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 75% 75% at 40% 0%, black, transparent);
  pointer-events: none;
}
.rcp-hero .container { position: relative; }
.rcp-hero .breadcrumb { margin-bottom: 30px; }

.rcp-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.rcp-ident {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.rcp-hero-icon {
  width: 76px; height: 76px;
  border-radius: 20px;
  flex-shrink: 0;
  background: var(--gradient-rcp);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 12px 32px rgba(13,148,136,0.45),
    0 2px 8px rgba(0,0,0,0.4);
}
.rcp-hero-icon svg { width: 38px; height: 38px; }
.rcp-kicker {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
.rcp-os {
  display: inline-flex;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #99F6E4;
  background: rgba(20,184,166,0.14);
  border: 1px solid rgba(45,212,191,0.35);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}

.rcp-hero h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  color: #fff;
  max-width: 640px;
}
.rcp-hero p.lead { margin-top: 20px; color: #b6bfda; max-width: 560px; font-size: 16.5px; }

/* gradient text — dark backgrounds */
.rcp-grad {
  background: linear-gradient(120deg, #5EEAD4 0%, #2DD4BF 45%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* gradient text — light backgrounds */
.rcp-grad-ink {
  background: linear-gradient(120deg, #0D9488 0%, #0891B2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rcp-template-heading {
  text-wrap: balance;
}
.rcp-heading-phrase {
  display: inline-block;
  white-space: nowrap;
}

/* teal primary button */
.btn-rcp {
  background: var(--gradient-rcp);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(45,212,191,0.28), 0 18px 40px rgba(8,145,178,0.38);
}
.btn-rcp:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(8,145,178,0.5); color: #fff; }

/* hero visual — generated reception scene with floating glass chips */
.rcp-hero-visual { position: relative; }
.rcp-hero-shot {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5), 0 0 80px rgba(20,184,166,0.16);
}
.rcp-hero-visual .glass-card {
  background: rgba(7,11,22,0.58);
  border-color: rgba(255,255,255,0.20);
  max-width: calc(100% - 12px);
  padding: 13px 16px;
}
.rcp-hero-visual .gc-title {
  min-width: 0;
  flex-wrap: wrap;
  line-height: 1.35;
}
.rcp-hero-visual .gc-sub { color: #d8edf5; }
.rcp-float1 {
  top: -20px; left: -14px;
  width: 216px;
  animation: heroFloat 7s ease-in-out infinite;
}
.rcp-float2 {
  bottom: -20px; right: -14px;
  width: 208px;
  animation: heroFloat 8s ease-in-out 1.4s infinite;
}

/* ---------- eyebrow variants ---------- */
.rcp-eyebrow {
  color: #0F766E;
  background: var(--gradient-rcp-soft);
  border-color: rgba(20,184,166,0.3);
}
.rcp-eyebrow.on-dark {
  color: #99F6E4;
  background: rgba(20,184,166,0.12);
  border-color: rgba(45,212,191,0.3);
}

/* ---------- media chip safety (long JP labels on narrow screens) ---------- */
.rcp-media-chip {
  max-width: calc(100% - 36px);
  white-space: normal;
  line-height: 1.5;
}
.rcp-photo-panel {
  aspect-ratio: 3 / 2;
}
.rcp-photo-panel img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

/* ---------- platform tag chips (light sections) ---------- */
.rcp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.rcp-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-600);
  background: #fff;
  border: 1px solid var(--slate-300);
  padding: 6px 13px;
  border-radius: var(--radius-full);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.rcp-chips span svg { width: 14px; height: 14px; color: var(--rcp-teal); flex-shrink: 0; }
.rcp-chips span:hover {
  border-color: rgba(20,184,166,0.55);
  color: #0F766E;
  background: rgba(20,184,166,0.07);
}

/* ---------- generated concept gallery (numbered captions + hover lift) ---------- */
.rcp-gallery { counter-reset: rcpshot; }
.rcp-gallery .shot-figure {
  counter-increment: rcpshot;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rcp-gallery .shot-figure img {
  aspect-ratio: 25 / 16;
  height: auto;
  object-fit: cover;
}
.rcp-gallery .shot-figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20,184,166,0.45);
}
.rcp-gallery .shot-figure figcaption { display: flex; align-items: center; gap: 10px; }
.rcp-gallery .shot-figure figcaption::before {
  content: counter(rcpshot, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #0F766E;
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: var(--radius-full);
  padding: 1px 9px;
  flex-shrink: 0;
}

/* ---------- demo video (click-to-play YouTube facade) ---------- */
.rcp-video-wrap { text-align: center; }
.rcp-video-frame {
  position: relative;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #0b1120;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}
.rcp-video-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
}
.rcp-video-frame:hover img,
.rcp-video-frame:focus-visible img { transform: scale(1.035); filter: brightness(.82); }
.rcp-video-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.38) 100%);
  pointer-events: none;
}
.rcp-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--gradient-rcp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 16px 40px rgba(8,145,178,0.5);
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 1;
}
.rcp-video-play svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.rcp-video-frame:hover .rcp-video-play,
.rcp-video-frame:focus-visible .rcp-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 20px 48px rgba(8,145,178,0.6);
}
.rcp-video-badge {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: #fff;
  background: rgba(7,11,22,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  padding: 5px 12px 5px 10px;
  z-index: 1;
}
.rcp-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.rcp-video-caption {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-600);
}

/* ---------- teal accent cards ---------- */
.rcp-card .icon-box { background: var(--gradient-rcp-soft); }
.rcp-card .icon-box svg { color: var(--rcp-deep); }
.rcp-card:hover { border-color: rgba(20,184,166,0.35); }

/* ---------- dark section: 非接触・無人化 ---------- */
.rcp-dark {
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 50% 42% at 88% 8%, rgba(20,184,166,0.20), transparent 65%),
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(8,145,178,0.18), transparent 62%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
  color: var(--slate-200);
}
.rcp-dark-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}
.rcp-dark-text h2 { font-size: clamp(26px, 3.4vw, 38px); color: #fff; margin-top: 14px; }
.rcp-dark-text > p { margin-top: 16px; color: #aab3cc; font-size: 16px; max-width: 480px; }
.rcp-dark-visual { position: relative; }
.rcp-dark-visual > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5);
}

/* ---------- CTA band with generated entrance-photo backdrop ---------- */
.rcp-cta {
  border-radius: 28px;
  color: #fff;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(100deg, rgba(7,11,22,0.9) 0%, rgba(7,11,22,0.74) 50%, rgba(8,32,40,0.6) 100%),
    url("../assets/photos/rcp-generated-cta-entrance.jpg");
  background-size: cover;
  background-position: center 42%;
}
.rcp-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 90% at 88% 12%, rgba(20,184,166,0.28), transparent 62%);
  pointer-events: none;
}
.rcp-cta > * { position: relative; }
.rcp-cta-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: var(--gradient-rcp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 14px 34px rgba(8,145,178,0.45);
}
.rcp-cta-icon svg { width: 28px; height: 28px; }
.rcp-cta h2 { font-size: clamp(24px, 3.2vw, 34px); color: #fff; }
.rcp-cta-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rcp-cta .btn { white-space: normal; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .rcp-hero { padding: 56px 0 72px; }
  .rcp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .rcp-hero-visual { margin-top: 6px; }
  .rcp-float1 { top: -14px; left: 6px; }
  .rcp-float2 { bottom: -14px; right: 6px; }
  .rcp-dark-grid { grid-template-columns: 1fr; gap: 40px; }
  .rcp-dark-text > p { max-width: none; }
}
@media (max-width: 620px) {
  .section-head h2.rcp-template-heading { font-size: clamp(22px, 6.6vw, 26px); }
  .rcp-hero-icon { width: 64px; height: 64px; border-radius: 16px; }
  .rcp-hero-icon svg { width: 32px; height: 32px; }
  .rcp-kicker { font-size: 19px; }
  .rcp-hero-visual {
    display: grid;
    gap: 12px;
  }
  .rcp-hero-visual .glass-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    padding: 11px 13px;
  }
  .rcp-float1,
  .rcp-float2 {
    animation: none;
  }
  .rcp-cta { padding: 52px 20px; }
  .rcp-cta-actions { flex-direction: column; align-items: stretch; }
  .rcp-cta-actions .btn { width: 100%; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .rcp-float1, .rcp-float2 { animation: none; }
  .rcp-gallery .shot-figure { transition: none; }
  .rcp-gallery .shot-figure:hover { transform: none; }
}

/* ========== agephonebusiness4.html page ========== */
/* AGEphone Business 4 — pro Windows softphone.
   Violet accent (#7C5CFC → #5B3DF5): sharp, professional desktop tool. */
:root {
  --ab4-violet: #7C5CFC;
  --ab4-deep: #5B3DF5;
  --ab4-light: #9B7BFF;
  --gradient-ab4: linear-gradient(135deg, #9B7BFF 0%, #7C5CFC 48%, #5B3DF5 100%);
  --gradient-ab4-soft: linear-gradient(135deg, rgba(124,92,252,0.12), rgba(91,61,245,0.08));
}

/* ---------- Hero ---------- */
.ab4-hero {
  position: relative;
  color: #fff;
  padding: 72px 0 96px;
  overflow: hidden;
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 52% 44% at 82% 10%, rgba(124,92,252,0.30), transparent 65%),
    radial-gradient(ellipse 46% 40% at 2% 96%, rgba(91,61,245,0.18), transparent 62%),
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(72,114,185,0.22), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
}
.ab4-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 75% 75% at 40% 0%, black, transparent);
  pointer-events: none;
}
.ab4-hero .container { position: relative; }
.ab4-hero .breadcrumb { margin-bottom: 30px; flex-wrap: wrap; }

.ab4-hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
}

.ab4-ident-icon {
  width: 76px; height: 76px;
  border-radius: 20px;
  background: var(--gradient-ab4);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 12px 32px rgba(91,61,245,0.45),
    0 2px 8px rgba(0,0,0,0.4);
}
.ab4-ident-icon svg { width: 36px; height: 36px; }

.ab4-hero h1 {
  font-size: clamp(30px, 4.4vw, 50px);
  color: #fff;
  margin-top: 22px;
  max-width: 640px;
}
/* gradient word on dark ground */
.ab4-grad {
  background: linear-gradient(120deg, #C9B8FF 0%, #A78BFF 45%, #8A66FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* gradient word on light ground */
.ab4-grad-ink {
  background: linear-gradient(120deg, #7C5CFC 0%, #5B3DF5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ab4-hero p.lead { margin-top: 20px; color: #b6bfda; max-width: 560px; font-size: 17px; }
.ab4-hero-note { color: #9aa3c2; margin-top: 12px; }

/* violet primary button */
.ab4-btn {
  background: var(--gradient-ab4);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(155,123,255,0.3), 0 18px 40px rgba(91,61,245,0.38);
}
.ab4-btn:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(91,61,245,0.5); color: #fff; }

/* hero visual: real photo + floating glass chips */
.ab4-hero-visual { position: relative; }
.ab4-hero-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 70px rgba(0,0,0,0.55), 0 0 80px rgba(124,92,252,0.20);
  aspect-ratio: 5 / 4;
}
.ab4-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab4-hero-visual .glass-card--float1 {
  top: -22px; left: -26px;
  padding: 13px 18px;
  animation: heroFloat 7s ease-in-out infinite;
}
.ab4-hero-visual .glass-card--float2 {
  bottom: -20px; right: -22px;
  padding: 13px 18px;
  animation: heroFloat 8s ease-in-out 1.4s infinite;
}
.ab4-hero-visual .glass-card .gc-title { white-space: nowrap; }
.ab4-hero-visual .glass-card svg { flex-shrink: 0; }

/* ---------- violet eyebrow variant ---------- */
.ab4-eyebrow {
  color: #5B3DF5;
  background: var(--gradient-ab4-soft);
  border-color: rgba(124,92,252,0.28);
}
.ab4-eyebrow.on-dark {
  color: #D3C6FF;
  background: rgba(124,92,252,0.14);
  border-color: rgba(155,123,255,0.35);
}

/* ---------- legacy (Business 3) notice band ---------- */
.ab4-legacy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(124,92,252,0.07), rgba(91,61,245,0.03)), #fff;
  border-color: rgba(124,92,252,0.2);
}
.ab4-legacy h3 { margin-bottom: 4px; font-size: 17px; }
.ab4-legacy > div { flex: 1; min-width: 260px; max-width: 760px; }
.ab4-legacy .btn { flex-shrink: 0; }
.ab4-legacy .btn:hover { border-color: var(--ab4-violet); color: var(--ab4-deep); }

/* ---------- three strengths ---------- */
.ab4-strengths .grid { counter-reset: ab4step; }
.ab4-strengths .card { position: relative; overflow: hidden; }
.ab4-strengths .card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-ab4);
  opacity: 0;
  transition: opacity .2s ease;
}
.ab4-strengths .card:hover::before { opacity: 1; }
.ab4-strengths .card:hover { border-color: rgba(124,92,252,0.35); }
.ab4-strengths .card::after {
  counter-increment: ab4step;
  content: "0" counter(ab4step);
  position: absolute;
  top: 16px; right: 22px;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-ab4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.15;
  pointer-events: none;
}
.ab4-strengths .card .icon-box {
  background: var(--gradient-ab4);
  box-shadow: 0 10px 24px rgba(91,61,245,0.28);
}
.ab4-strengths .card .icon-box svg { color: #fff; }

/* ---------- equipment (dark) : photo panel + feature chips ---------- */
.ab4-equip-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}
.ab4-equip-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  min-height: 340px;
}
.ab4-equip-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab4-equip-cards { display: grid; gap: 24px; align-content: stretch; }
.ab4-equip-cards .icon-box {
  background: var(--gradient-ab4);
  box-shadow: 0 10px 24px rgba(91,61,245,0.3);
}
.ab4-equip-cards .icon-box svg { color: #fff; }
.ab4-equip-cards .form-note { color: #8b95b8; }

/* feature chips — violet hover (page-local variant of .func-chips) */
.ab4-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ab4-chips span {
  font-size: 13px;
  font-weight: 600;
  color: #cfd6ec;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  padding: 6px 13px;
  border-radius: var(--radius-full);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.ab4-chips span:hover {
  border-color: rgba(155,123,255,0.6);
  color: #D3C6FF;
  background: rgba(124,92,252,0.13);
}

/* ---------- headset cards (photo header) ---------- */
.ab4-hs-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.ab4-hs-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #faf9ff 0%, #f0ecfe 100%);
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.ab4-hs-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.ab4-hs-card:hover .ab4-hs-media img { transform: scale(1.05); }
.ab4-hs-media--icon svg {
  width: 64px;
  height: 64px;
  color: var(--ab4-violet);
  opacity: 0.55;
  transition: transform .35s ease, opacity .35s ease;
}
.ab4-hs-card:hover .ab4-hs-media--icon svg { transform: scale(1.08); opacity: 0.8; }
.ab4-hs-body { padding: 20px 24px 26px; }
.ab4-hs-body h3 { font-size: 16.5px; }
.ab4-hs-card:hover { border-color: rgba(124,92,252,0.35); }

/* ---------- specs: accent link ---------- */
.ab4-link { color: var(--ab4-deep); font-weight: 700; }
.ab4-link:hover { text-decoration: underline; }

/* ---------- CTA band with photo backdrop (page-local variant) ---------- */
.ab4-cta {
  background-image:
    linear-gradient(100deg, rgba(8,12,28,0.93) 0%, rgba(8,12,28,0.8) 55%, rgba(8,12,28,0.66) 100%),
    url("../assets/photos/ab4-cta-desk.jpg");
  background-size: cover;
  background-position: center 40%;
}
.ab4-cta::before {
  background: radial-gradient(ellipse 55% 90% at 88% 15%, rgba(124,92,252,0.35), transparent 62%);
  opacity: 1;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .ab4-hero { padding: 56px 0 72px; }
  .ab4-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .ab4-hero-visual { margin-top: 6px; }
  .ab4-hero-visual .glass-card--float1 { top: -16px; left: 12px; }
  .ab4-hero-visual .glass-card--float2 { bottom: -16px; right: 12px; }
  .ab4-equip-grid { grid-template-columns: 1fr; }
  .ab4-equip-photo { min-height: 260px; }
}
@media (max-width: 620px) {
  .ab4-ident-icon { width: 60px; height: 60px; border-radius: 16px; }
  .ab4-ident-icon svg { width: 30px; height: 30px; }
  .ab4-hero-photo { aspect-ratio: 4 / 3.4; }
  .ab4-strengths .card::after { font-size: 38px; top: 14px; right: 18px; }
  .ab4-legacy { flex-direction: column; align-items: flex-start; }
  .ab4-equip-photo { min-height: 220px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ab4-hero-visual .glass-card--float1,
  .ab4-hero-visual .glass-card--float2 { animation: none; }
  .ab4-hero-visual .pulse-dot,
  .ab4-equip-photo .pulse-dot { animation: none; }
  .ab4-hs-media img,
  .ab4-hs-media--icon svg { transition: none; }
  .ab4-hs-card:hover .ab4-hs-media img { transform: none; }
  .ab4-hs-card:hover .ab4-hs-media--icon svg { transform: none; }
  .ab4-strengths .card::before { transition: none; }
}

/* ========== partner.html page ========== */
/* Accent: restrained rose/coral for the partner program page.
   All new classes carry the ptn- prefix to avoid collisions. */
:root {
  --ptn-rose: #F43F5E;
  --ptn-rose-deep: #E11D48;
  --ptn-rose-soft: #FB7185;
  --ptn-gradient: linear-gradient(135deg, #FB7185 0%, #F43F5E 55%, #E11D48 100%);
}

/* ---------- hero (photo side + floating chips) ---------- */
.ptn-hero {
  position: relative;
  color: #fff;
  padding: 76px 0 96px;
  overflow: hidden;
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 50% 44% at 84% 4%, rgba(244,63,94,0.16), transparent 65%),
    radial-gradient(ellipse 44% 38% at 2% 100%, rgba(225,29,72,0.10), transparent 62%),
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(72,114,185,0.30), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
}
.ptn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 75% 75% at 40% 0%, black, transparent);
  pointer-events: none;
}
.ptn-hero .container { position: relative; }
.ptn-hero .breadcrumb { margin-bottom: 30px; }

.ptn-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
}
.ptn-hero h1 {
  font-size: clamp(29px, 4.2vw, 46px);
  color: #fff;
  margin-top: 18px;
  max-width: 620px;
}
.ptn-grad {
  background: linear-gradient(120deg, #FDA4AF 0%, #FB7185 48%, #F43F5E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ptn-hero p.lead {
  margin-top: 20px;
  color: #b6bfda;
  max-width: 560px;
  font-size: 16.5px;
}

.ptn-hero-visual { position: relative; }
.ptn-hero-photo {
  width: 100%;
  min-height: 380px;
  max-height: 440px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5);
}
.ptn-hero-visual .glass-card--float1 {
  top: -18px;
  left: -22px;
  width: 240px;
  padding: 14px 16px;
  animation: heroFloat 7s ease-in-out infinite;
}
.ptn-hero-visual .glass-card--float2 {
  bottom: -20px;
  right: -18px;
  width: 240px;
  padding: 14px 16px;
  animation: heroFloat 8s ease-in-out 1.4s infinite;
}

/* ---------- rose button / eyebrow variants (page-local) ---------- */
.btn.ptn-btn {
  background: var(--ptn-gradient);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(244,63,94,0.25), 0 18px 40px rgba(225,29,72,0.28);
}
.btn.ptn-btn:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(225,29,72,0.4); }

.eyebrow.ptn-eyebrow {
  color: #BE123C;
  background: linear-gradient(135deg, rgba(251,113,133,0.13), rgba(225,29,72,0.08));
  border-color: rgba(244,63,94,0.26);
}
.eyebrow.ptn-eyebrow.on-dark {
  color: #FECDD3;
  background: rgba(244,63,94,0.10);
  border-color: rgba(251,113,133,0.32);
}

/* ---------- partner-type cards (photo header + rose accents) ---------- */
.ptn-card { position: relative; }
.ptn-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ptn-gradient);
  opacity: 0;
  transition: opacity .2s ease;
}
.ptn-card:hover { border-color: rgba(244,63,94,0.28); }
.ptn-card:hover::after { opacity: 1; }
.ptn-card .icon-box {
  background: linear-gradient(135deg, rgba(251,113,133,0.15), rgba(225,29,72,0.08));
}
.ptn-card .icon-box svg { color: var(--ptn-rose-deep); }
.ptn-card .card-media-img { height: 210px; }

/* ---------- dark flow section (numbered registration steps) ---------- */
.ptn-dark {
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 46% 40% at 88% 6%, rgba(244,63,94,0.15), transparent 65%),
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(72,114,185,0.20), transparent 62%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
  color: var(--slate-200);
}
.ptn-dark .section-head h2 { color: #fff; }
.ptn-dark .section-head p { color: #aab3cc; }

.ptn-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ptn-step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.ptn-step-num {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #FDA4AF 0%, #FB7185 48%, #F43F5E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.ptn-step p {
  color: #cfd6ec;
  font-size: 15.5px;
  font-weight: 600;
}
/* connector chevron between steps */
.ptn-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 11px;
  height: 11px;
  border-top: 2px solid rgba(251,113,133,0.65);
  border-right: 2px solid rgba(251,113,133,0.65);
  transform: translateY(-50%) rotate(45deg);
}
.ptn-step:last-child::after { display: none; }

/* ---------- CTA band with photo backdrop (page-specific variant) ---------- */
.ptn-cta {
  background-image:
    linear-gradient(100deg, rgba(8,12,28,0.93) 0%, rgba(8,12,28,0.80) 55%, rgba(8,12,28,0.62) 100%),
    url("../assets/photos/ptn-cta-office.jpg");
  background-size: cover;
  background-position: center 40%;
}
.ptn-cta::before {
  background: radial-gradient(ellipse 55% 90% at 88% 15%, rgba(244,63,94,0.22), transparent 62%);
  opacity: 1;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .ptn-hero { padding: 56px 0 72px; }
  .ptn-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .ptn-hero-visual { margin-top: 10px; }
  .ptn-hero-photo { min-height: 300px; }
  .ptn-hero-visual .glass-card--float1 { top: 12px; left: 12px; }
  .ptn-hero-visual .glass-card--float2 { bottom: 12px; right: 12px; }
  .ptn-steps { grid-template-columns: 1fr; gap: 40px; }
  .ptn-step::after {
    top: auto;
    right: auto;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
}
@media (max-width: 620px) {
  .ptn-hero-photo { min-height: 240px; }
  .ptn-hero-visual .glass-card--float1,
  .ptn-hero-visual .glass-card--float2 { width: 205px; padding: 12px 14px; }
  .ptn-step-num { font-size: 42px; }
  .ptn-step { padding: 24px 22px; }
  .ptn-card .card-media-img { height: 180px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ptn-hero-visual .glass-card--float1,
  .ptn-hero-visual .glass-card--float2 { animation: none; }
}

/* ========== download.html page ========== */

/* ---------- hero — download hub ---------- */
.dl-hero {
  position: relative;
  color: #fff;
  padding: 72px 0 96px;
  overflow: hidden;
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 54% 46% at 84% 4%, rgba(126,176,222,0.22), transparent 64%),
    radial-gradient(ellipse 48% 42% at 0% 100%, rgba(57,83,164,0.30), transparent 62%),
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(72,114,185,0.30), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
}
.dl-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 75% 75% at 35% 0%, black, transparent);
  pointer-events: none;
}
.dl-hero .container { position: relative; }
.dl-hero .breadcrumb { margin-bottom: 30px; }

.dl-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
}
.dl-hero-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  margin-bottom: 22px;
}
.dl-hero-icon svg { width: 30px; height: 30px; }
.dl-hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  color: #fff;
  max-width: 640px;
}
.dl-grad {
  background: linear-gradient(120deg, #9FB3E0 0%, #7EB0DE 50%, #A9D3F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dl-hero p.lead { margin-top: 18px; color: #b6bfda; max-width: 560px; font-size: 16.5px; }

.dl-hero-visual { position: relative; }
.dl-hero-visual > img {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5);
}
/* floating glass strip listing the supported platforms */
.dl-os-card {
  position: absolute;
  left: -22px; bottom: -26px;
  display: flex;
  gap: 10px;
  background: rgba(11,17,32,0.78);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  padding: 14px 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  animation: heroFloat 7s ease-in-out infinite;
}
.dl-os {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 66px;
  padding: 11px 4px 9px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #C7D6ED;
  line-height: 1;
  transition: background .15s ease, border-color .15s ease;
}
.dl-os:hover { background: rgba(255,255,255,0.12); border-color: rgba(126,176,222,0.45); }
.dl-os svg { width: 20px; height: 20px; color: #fff; }

/* ---------- product chooser cards ---------- */
.dl-product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dl-product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 2;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity .2s ease;
}
.dl-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dl-product-card:hover::before { opacity: 1; }
/* product accents: Cloud = orange, Business = violet */
.dl-product-card--cloud::before { background: linear-gradient(90deg, #F9A825, #F07818 55%, #E8590F); }
.dl-product-card--cloud:hover { border-color: rgba(240,120,24,0.35); }
.dl-product-card--biz::before { background: linear-gradient(90deg, #8B7FE8, #6C5CE7 55%, #4E3DC8); }
.dl-product-card--biz:hover { border-color: rgba(108,92,231,0.4); }

.dl-product-media { position: relative; }
.dl-product-media .dl-product-photo {
  width: 100%;
  height: 216px;
  object-fit: cover;
  display: block;
  transition: filter .3s ease;
}
.dl-product-card--cloud .dl-product-photo { object-position: 48% 42%; }
.dl-product-card:hover .dl-product-photo { filter: brightness(1.06) saturate(1.06); }
.dl-product-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,22,0) 55%, rgba(7,11,22,0.22) 100%);
  pointer-events: none;
}
.dl-product-appicon {
  position: absolute;
  left: 26px; bottom: -26px;
  z-index: 2;
  width: 64px; height: 64px;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff, 0 14px 30px rgba(16,22,42,0.30);
}
.dl-product-iconbox {
  position: absolute;
  left: 26px; bottom: -26px;
  z-index: 2;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6C5CE7, #3E2FB2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px #fff, 0 14px 30px rgba(62,47,178,0.35);
}
.dl-product-iconbox svg { width: 30px; height: 30px; color: #fff; }

.dl-product-body {
  padding: 42px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.dl-product-body h3 { font-size: 21px; margin-bottom: 6px; }
.dl-product-body .small-print { font-size: 14px; margin-bottom: 22px; }
.dl-product-body .btn { margin-top: auto; }

/* ---------- limitations note band ---------- */
.dl-note {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: linear-gradient(135deg, rgba(57,83,164,0.07), rgba(126,176,222,0.05) 60%, rgba(255,255,255,0)), #fff;
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.dl-note::after {
  content: "PDF";
  content: "PDF" / ""; /* decorative — hidden from screen readers where supported */
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 84px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.08;
  pointer-events: none;
}
.dl-note-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
}
.dl-note-icon svg { width: 24px; height: 24px; color: #fff; }
.dl-note-text { flex: 1; min-width: 240px; }
.dl-note-text h3 { font-size: 17px; margin-bottom: 4px; }
.dl-note-text p { color: var(--slate-600); font-size: 14.5px; }
.dl-note .btn { position: relative; }

/* ---------- partner CTA band with photo backdrop (indigo tint) ---------- */
.dl-cta {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  padding: 64px;
  background-image:
    linear-gradient(100deg, rgba(8,12,28,0.94) 0%, rgba(8,12,28,0.84) 52%, rgba(10,16,36,0.68) 100%),
    url("../assets/photos/dl-cta-partnership.jpg");
  background-size: cover;
  background-position: center 42%;
}
.dl-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 90% at 88% 10%, rgba(86,145,205,0.32), transparent 62%);
  pointer-events: none;
}
.dl-cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.dl-cta h2 { color: #fff; font-size: clamp(23px, 3vw, 32px); }
.dl-cta p { color: #b6bfda; font-size: 16px; }
.dl-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .dl-hero { padding: 56px 0 84px; }
  .dl-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .dl-hero-visual { margin-top: 4px; }
  .dl-os-card { left: 12px; bottom: -22px; }
  .dl-cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .dl-cta { padding: 44px 28px; }
}
@media (max-width: 620px) {
  .dl-hero { padding: 52px 0 64px; }
  .dl-hero-visual > img { min-height: 230px; }
  .dl-os-card {
    position: static;
    margin-top: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: none;
  }
  .dl-product-media .dl-product-photo { height: 180px; }
  .dl-product-body { padding: 40px 22px 24px; }
  .dl-note { padding: 22px; gap: 16px; }
  .dl-note::after { font-size: 62px; right: 12px; }
  .dl-cta { padding: 40px 22px; }
  .dl-cta-actions .btn { width: 100%; white-space: normal; text-align: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .dl-os-card { animation: none; }
  .dl-product-card:hover { transform: none; }
}

/* ========== contact.html page ========== */

/* ---------- hero — contact (photo + floating glass chip) ---------- */
.ct-hero {
  position: relative;
  color: #fff;
  padding: 72px 0 96px;
  overflow: hidden;
  background-color: #0b1120;
  background-image:
    radial-gradient(ellipse 54% 46% at 84% 6%, rgba(126,176,222,0.22), transparent 64%),
    radial-gradient(ellipse 48% 42% at 0% 100%, rgba(57,83,164,0.30), transparent 62%),
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(72,114,185,0.30), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #070b16 100%);
}
.ct-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 75% 75% at 35% 0%, black, transparent);
  pointer-events: none;
}
.ct-hero .container { position: relative; }
.ct-hero .breadcrumb { margin-bottom: 30px; }

.ct-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
}
.ct-hero-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  margin-bottom: 22px;
}
.ct-hero-icon svg { width: 30px; height: 30px; }
.ct-hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  color: #fff;
}
.ct-grad {
  background: linear-gradient(120deg, #9FB3E0 0%, #7EB0DE 50%, #A9D3F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ct-hero p.lead { margin-top: 18px; color: #b6bfda; max-width: 560px; font-size: 16.5px; }
.ct-hero p.lead a:hover { color: #fff; }

.ct-hero-visual { position: relative; }
.ct-hero-visual > img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5);
}
.ct-hero-chip {
  left: -22px; bottom: -24px;
  width: 254px;
  padding: 16px 18px;
  animation: heroFloat 7s ease-in-out infinite;
}

/* ---------- form + sidebar ---------- */
.ct-form-section {
  background: linear-gradient(180deg, var(--slate-50) 0%, #fff 260px);
}
.ct-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.ct-form-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
}
.ct-form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}
/* The embedded form area should stay steady while users are filling it in. */
.ct-form-card:hover {
  transform: none;
  box-shadow: var(--shadow-md);
  border-color: var(--slate-200);
}
.ct-form-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.ct-form-head .icon-box { margin-bottom: 0; flex-shrink: 0; }
.ct-form-head h3 { font-size: 20px; margin-bottom: 4px; }
.ct-form-head .small-print { margin-top: 0; }
.ct-jotform-embed {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.ct-jotform-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

.ct-side { display: flex; flex-direction: column; gap: 20px; }
.ct-mail-card .card-media-img { height: 190px; }
.ct-mail-address { margin-top: 2px; }
.ct-mail-address a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--indigo-600);
  transition: color .15s ease;
}
.ct-mail-address a:hover { color: var(--violet-500); text-decoration: underline; }
.ct-link { color: var(--indigo-600); font-weight: 700; }
.ct-link:hover { text-decoration: underline; }
.ct-side-card .icon-box { width: 46px; height: 46px; margin-bottom: 14px; }

/* ---------- routing guide (dark band + numbered cards) ---------- */
.ct-routes { border-bottom: 1px solid rgba(255,255,255,0.08); }
.ct-routes-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}
.ct-routes-visual { position: relative; }
.ct-routes-visual > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5);
}
.ct-routes-cards { display: flex; flex-direction: column; gap: 24px; }
.ct-route-card { position: relative; overflow: hidden; }
/* big gradient ordinal, echoing the flagship page's stat numerals */
.ct-route-card::after {
  position: absolute;
  right: 20px; top: 14px;
  font-size: 84px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, #9FB3E0 0%, #7EB0DE 50%, #A9D3F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.16;
  pointer-events: none;
}
.ct-route-card:nth-child(1)::after { content: "01"; }
.ct-route-card:nth-child(2)::after { content: "02"; }
.ct-route-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.ct-route-head .icon-box { margin-bottom: 0; flex-shrink: 0; width: 46px; height: 46px; }
.ct-route-head h3 { font-size: 17px; margin-bottom: 0; padding-right: 44px; position: relative; }
.ct-route-lead { font-weight: 700; color: #dbe1f3; font-size: 14.5px; }
.ct-route-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-route-list li {
  font-size: 14.5px;
  color: #a9b2cf;
  line-height: 1.75;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color .15s ease, background .15s ease;
}
.ct-route-list li:hover {
  border-color: rgba(126,176,222,0.4);
  background: rgba(126,176,222,0.07);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .ct-hero { padding: 56px 0 84px; }
  .ct-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .ct-hero-visual { margin-top: 4px; }
  .ct-hero-chip { left: 12px; bottom: -22px; }
  .ct-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .ct-routes-grid { grid-template-columns: 1fr; gap: 32px; }
  .ct-routes-visual > img { min-height: 0; height: auto; max-height: 340px; }
}
@media (max-width: 620px) {
  .ct-hero { padding: 52px 0 68px; }
  .ct-hero-visual > img { min-height: 240px; }
  .ct-hero-chip {
    position: static;
    display: inline-block;
    width: auto;
    margin-top: 14px;
    animation: none;
  }
  .ct-form-card { padding: 26px 20px; }
  .ct-form-head { flex-direction: column; gap: 12px; }
  .ct-route-card::after { font-size: 62px; right: 12px; }
  .ct-route-head { gap: 12px; }
  .ct-route-head h3 { padding-right: 0; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ct-hero-chip { animation: none; }
  .ct-form-card:hover,
  .ct-route-card:hover,
  .ct-side-card:hover,
  .ct-mail-card:hover { transform: none; }
}
