:root {
  --navy-950: #071a2e;
  --navy-900: #0b2037;
  --navy-800: #10243e;
  --navy-700: #173f6b;
  --blue-700: #245da8;
  --blue-600: #2d6ebe;
  --blue-500: #3e7dd1;
  --teal-600: #159d9a;
  --teal-500: #27b9a5;
  --gold-500: #e7ad43;
  --ink: #152336;
  --ink-2: #34465a;
  --muted: #66788b;
  --line: #dbe5ed;
  --surface: #ffffff;
  --surface-2: #f4f8fb;
  --surface-3: #eaf2f8;
  --success: #177c63;
  --error: #b53a47;
  --shadow-sm: 0 10px 30px rgba(12, 42, 67, .08);
  --shadow-md: 0 22px 60px rgba(5, 30, 52, .14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-h: 80px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
ul, ol { padding-left: 1.25em; }
p, h1, h2, h3, h4 { margin-top: 0; }
::selection { background: rgba(39,185,165,.25); }

.skip-link {
  position: fixed; z-index: 9999; top: 10px; left: 10px;
  padding: 10px 16px; color: #fff; background: var(--navy-950);
  border-radius: 8px; transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #73d8c7; outline-offset: 3px; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section--soft { background: var(--surface-2); }
.section--tight { padding: 76px 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  color: var(--blue-700); font-size: .78rem; line-height: 1.4; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: #83e5d3; }
.eyebrow--light::before { background: currentColor; }
.section-title {
  margin-bottom: 20px; color: var(--navy-900);
  font-size: clamp(2rem, 3vw, 3rem); line-height: 1.3; letter-spacing: -.035em;
}
.section-title--light { color: #fff; }
.section-lead { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.12rem); line-height: 2; }
.section-lead--light { color: #c6d8e8; }
.note { color: var(--muted); font-size: .86rem; line-height: 1.7; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  background: rgba(7, 26, 46, .93); border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { background: rgba(7, 26, 46, .98); box-shadow: 0 10px 35px rgba(0,0,0,.18); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.site-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.site-logo img { width: 178px; height: auto; max-height: 54px; object-fit: contain; }
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.site-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px;
  color: #e7eff7; font-size: .91rem; font-weight: 650; border-radius: 10px;
  transition: color .2s, background .2s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.09); }
.site-nav .nav-cta { margin-left: 6px; padding-inline: 18px; color: var(--navy-950); background: #fff; }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: var(--navy-950); background: #dff8f3; }
.menu-toggle {
  display: none; width: 48px; height: 48px; margin-left: auto; padding: 0;
  align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 12px;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; position: absolute; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s;
}
.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 12px 24px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 760; line-height: 1.35; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
}
.button::after { content: "→"; font-size: 1.05em; transition: transform .2s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover::after { transform: translateX(4px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--blue-600), var(--teal-600)); box-shadow: 0 15px 34px rgba(23,123,143,.28); }
.button--primary:hover { box-shadow: 0 18px 42px rgba(23,123,143,.36); }
.button--light { color: var(--navy-950); background: #fff; box-shadow: 0 15px 34px rgba(0,0,0,.16); }
.button--ghost { color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); }
.button--outline { color: var(--blue-700); background: transparent; border-color: #9ab6cd; }
.button--small { min-height: 46px; padding: 10px 19px; font-size: .92rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-weight: 760; }
.link-arrow::after { content: "→"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative; min-height: 730px; overflow: hidden;
  color: #fff; background:
    radial-gradient(circle at 75% 18%, rgba(62,125,209,.30), transparent 35%),
    radial-gradient(circle at 18% 82%, rgba(21,157,154,.20), transparent 32%),
    linear-gradient(135deg, var(--navy-950) 0%, #0b2744 52%, #113f65 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 52px 52px; mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); align-items: center; gap: 28px; min-height: 650px; padding: 74px 0 56px; }
.hero-copy { max-width: 640px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 7px 13px;
  color: #c8f6ee; background: rgba(30,193,164,.10); border: 1px solid rgba(105,225,205,.3); border-radius: 999px;
  font-size: .82rem; font-weight: 760; letter-spacing: .06em;
}
.hero-kicker::before { content: ""; width: 7px; height: 7px; background: #65d9c4; border-radius: 50%; box-shadow: 0 0 0 5px rgba(101,217,196,.13); }
.hero-title { margin-bottom: 26px; font-size: clamp(2.65rem, 3vw, 4.9rem); line-height: 1.18; letter-spacing: -.055em; }
.accent { color: #77e2d0; }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: #d4e2ee; font-size: clamp(1.02rem, 1.7vw, 1.22rem); line-height: 1.95; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero-tags span { padding: 7px 12px; color: #cfe0ed; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .82rem; }
.hero-visual { position: relative; }
.hero-visual img { width: 110%; max-width: none; height: auto; margin-left: -3%; padding: 5%; filter: drop-shadow(0 24px 50px rgba(0,0,0,.16)); }
.hero-wave { position: absolute; right: 0; bottom: -1px; left: 0; height: 74px; color: #fff; }

/* Stats */
.stats-wrap { position: relative; z-index: 10; margin-top: -42px; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid rgba(19,67,105,.08); border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden;
}
.stat { min-height: 136px; padding: 27px 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { color: var(--navy-900); font-size: clamp(1.65rem, 3vw, 2.45rem); line-height: 1.2; letter-spacing: -.04em; }
.stat small { margin-top: 8px; color: var(--muted); font-size: .83rem; line-height: 1.5; }

/* Cards / grids */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; height: 100%; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-5px); border-color: #b8cedf; box-shadow: var(--shadow-md); }
.card-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 24px; color: var(--blue-700); background: var(--surface-3); border-radius: 16px; }
.card-icon svg { width: 29px; height: 29px; }
.card h3 { margin-bottom: 12px; color: var(--navy-900); font-size: 1.25rem; line-height: 1.45; }
.card p { margin-bottom: 0; color: var(--muted); font-size: .95rem; }
.card-number { position: absolute; top: 20px; right: 22px; color: #dbe8f1; font-size: 2.4rem; line-height: 1; font-weight: 850; letter-spacing: -.06em; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.media-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.media-frame img { width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; }
.media-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); border-radius: inherit; pointer-events: none; }
.list-check { margin: 26px 0 30px; padding: 0; list-style: none; display: grid; gap: 12px; }
.list-check li { position: relative; padding-left: 31px; color: var(--ink-2); }
.list-check li::before { content: "✓"; position: absolute; top: 3px; left: 0; width: 21px; height: 21px; display: grid; place-items: center; color: #fff; background: var(--teal-600); border-radius: 50%; font-size: .72rem; font-weight: 900; }

/* Amazon support dark section */
.amazon-section { position: relative; overflow: hidden; color: #fff; background: var(--navy-950); }
.amazon-section::before { content: ""; position: absolute; width: 760px; height: 760px; top: -330px; right: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(62,125,209,.26), transparent 68%); }
.amazon-section::after { content: ""; position: absolute; width: 560px; height: 560px; bottom: -300px; left: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(21,157,154,.22), transparent 68%); }
.amazon-section .container { position: relative; z-index: 2; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.support-card { min-height: 220px; padding: 27px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); backdrop-filter: blur(9px); }
.support-card__icon { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 20px; color: #78e0cf; background: rgba(101,217,196,.10); border-radius: 14px; }
.support-card__icon svg { width: 25px; height: 25px; }
.support-card h3 { margin-bottom: 10px; color: #fff; font-size: 1.12rem; }
.support-card p { margin: 0; color: #bcd0e0; font-size: .91rem; line-height: 1.75; }
.support-flow { margin-top: 48px; padding: 34px 30px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); }
.support-flow__title { margin-bottom: 24px; color: #fff; font-size: 1.05rem; }
.flow-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: flow; }
.flow-list li { position: relative; min-height: 105px; padding: 20px 14px 14px; text-align: center; color: #d5e3ee; background: rgba(255,255,255,.06); border-radius: 14px; font-size: .83rem; line-height: 1.55; }
.flow-list li::before { counter-increment: flow; content: counter(flow, decimal-leading-zero); display: block; margin-bottom: 9px; color: #71ddcb; font-size: .75rem; font-weight: 800; letter-spacing: .08em; }
.flow-list li:not(:last-child)::after { content: "→"; position: absolute; top: 50%; right: -13px; z-index: 2; color: #65d9c4; transform: translateY(-50%); font-weight: 800; }
.amazon-section__actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 38px; }
.amazon-section__note { max-width: 680px; margin: 0; color: #9fb6c8; font-size: .83rem; }

/* Operated services */
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.brand-card { position: relative; overflow: hidden; padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.brand-card::before { content: ""; position: absolute; width: 210px; height: 210px; top: -98px; right: -80px; border-radius: 50%; background: var(--brand-soft, #edf4fa); }
.brand-card__label { position: relative; display: inline-flex; margin-bottom: 22px; padding: 7px 12px; color: var(--brand-color, var(--blue-700)); background: var(--brand-soft, #edf4fa); border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.brand-card h3 { position: relative; margin-bottom: 12px; color: var(--navy-900); font-size: clamp(1.45rem, 2.5vw, 2.05rem); }
.brand-card p { position: relative; color: var(--muted); }
.brand-card .list-check { position: relative; margin-bottom: 24px; }
.brand-card--goods { --brand-color: #247b60; --brand-soft: #e2f5ec; }
.brand-card--create { --brand-color: #c56c25; --brand-soft: #fff0df; }

/* News */
.news-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.news-list li { display: grid; grid-template-columns: 145px 1fr; gap: 22px; padding: 22px 8px; border-bottom: 1px solid var(--line); }
.news-list time { color: var(--blue-700); font-size: .9rem; font-weight: 760; }
.news-list p { margin: 0; color: var(--ink-2); }

/* CTA */
.cta-band { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--blue-700), #0d7785); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-band::before { width: 360px; height: 360px; top: -230px; right: 4%; }
.cta-band::after { width: 220px; height: 220px; bottom: -160px; left: 9%; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 42px; padding: 72px 0; }
.cta-inner h2 { margin-bottom: 12px; color: #fff; font-size: clamp(1.85rem, 4vw, 3rem); line-height: 1.35; }
.cta-inner p { margin: 0; color: #d8f1f0; }
.cta-contact { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.cta-contact small { color: #c9e9e6; }

/* Page hero */
.page-hero { position: relative; overflow: hidden; padding: 94px 0 86px; color: #fff; background: linear-gradient(135deg, var(--navy-950), #103b62); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, transparent, #000 30%, #000); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #b9cddd; font-size: .82rem; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.page-hero h1 { max-width: 880px; margin-bottom: 18px; font-size: clamp(2.4rem, 5vw, 4.45rem); line-height: 1.22; letter-spacing: -.05em; }
.page-hero p { max-width: 780px; margin-bottom: 0; color: #cfdeea; font-size: 1.08rem; }

/* Detail content */
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.detail-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.detail-card h3 { margin-bottom: 13px; color: var(--navy-900); font-size: 1.3rem; }
.detail-card p { color: var(--muted); }
.detail-card ul { margin-bottom: 0; color: var(--ink-2); }

/* Enhanced Brand Content / A+ detail */
.ebc-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #f5f9fc 0%, #fff 62%); }
.ebc-section::before { content: ""; position: absolute; width: 520px; height: 520px; top: -280px; right: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(45,110,190,.13), transparent 68%); pointer-events: none; }
.ebc-section .container { position: relative; z-index: 1; }
.ebc-intro { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); gap: 38px; align-items: stretch; margin-bottom: 42px; }
.ebc-intro .section-head { margin-bottom: 0; align-self: center; }
.ebc-proof-card { padding: 32px; color: #fff; background: linear-gradient(145deg, var(--navy-950), #174d7b); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.ebc-proof-label, .ebc-card-label, .ebc-brand-kicker, .ebc-registration-label { display: block; margin-bottom: 9px; font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.ebc-proof-label { color: #83e5d3; }
.ebc-proof-card > strong { display: block; margin-bottom: 10px; color: #fff; font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.055em; }
.ebc-proof-card > strong small { margin-left: 5px; font-size: .32em; letter-spacing: 0; }
.ebc-proof-card h3 { margin-bottom: 10px; color: #fff; font-size: 1.2rem; }
.ebc-proof-card p { margin-bottom: 10px; color: #c9dcea; font-size: .9rem; }
.ebc-proof-card > small { display: block; margin-bottom: 20px; color: #93aec2; font-size: .74rem; }
.ebc-proof-card .link-arrow { color: #83e5d3; }
.ebc-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ebc-service-card { position: relative; min-height: 100%; padding: 28px 24px 26px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue-600); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.ebc-card-no { position: absolute; top: 18px; right: 20px; color: #dbe8f1; font-size: 2rem; line-height: 1; font-weight: 850; }
.ebc-card-label { color: var(--teal-600); }
.ebc-service-card h3 { min-height: 58px; margin-bottom: 12px; color: var(--navy-900); font-size: 1.12rem; line-height: 1.45; }
.ebc-service-card p { margin-bottom: 16px; color: var(--muted); font-size: .89rem; line-height: 1.75; }
.ebc-service-card ul { margin: 0; padding-left: 1.15em; color: var(--ink-2); font-size: .84rem; line-height: 1.75; }
.ebc-brand-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: center; margin-top: 26px; padding: 31px 34px; color: #fff; background: linear-gradient(135deg, #143d68, #0d7785); border-radius: var(--radius-md); }
.ebc-brand-kicker { color: #9ae8dc; }
.ebc-brand-box h3 { margin: 0; color: #fff; font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.5; }
.ebc-brand-box p { margin: 0; color: #d9e8f0; font-size: .94rem; }
.ebc-brand-box .note { display: inline-block; margin-top: 10px; color: #a9c8d7; }
.ebc-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.ebc-benefit { padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.ebc-benefit > span { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 13px; color: #fff; background: var(--teal-600); border-radius: 50%; font-size: .72rem; font-weight: 850; }
.ebc-benefit h3 { margin-bottom: 8px; color: var(--navy-900); font-size: 1.06rem; }
.ebc-benefit p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.75; }
.ebc-expertise { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 26px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.ebc-expertise__item { min-height: 112px; padding: 23px 25px; border-right: 1px solid var(--line); }
.ebc-expertise__item:last-child { border-right: 0; }
.ebc-expertise__item strong { display: block; margin-bottom: 6px; color: var(--navy-900); font-size: 1.08rem; }
.ebc-expertise__item span { color: var(--muted); font-size: .84rem; }
.ebc-registration-box { display: grid; grid-template-columns: auto 1fr; gap: 21px; align-items: center; margin-top: 26px; padding: 28px 30px; background: #eef8f5; border: 1px solid #ccebe2; border-radius: var(--radius-md); }
.ebc-registration-icon { width: 52px; height: 52px; display: grid; place-items: center; color: #fff; background: var(--success); border-radius: 15px; font-size: 1.3rem; font-weight: 900; box-shadow: var(--shadow-sm); }
.ebc-registration-label { color: var(--success); }
.ebc-registration-box h3 { margin-bottom: 7px; color: #125b4d; font-size: 1.15rem; }
.ebc-registration-box p { margin: 0; color: #3f685f; font-size: .92rem; }

/* A+ customer cases: editorial layout, intentionally distinct from FIRST MOVE testimonial cards */
.ebc-cases { margin-top: 64px; padding-top: 58px; border-top: 1px solid var(--line); }
.ebc-cases-head { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 54px; align-items: end; margin-bottom: 28px; }
.ebc-cases-head h3 { margin: 0; color: var(--navy-900); font-size: clamp(1.65rem, 3vw, 2.45rem); line-height: 1.35; }
.ebc-cases-head > p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.9; }

.ebc-case { display: grid; grid-template-columns: 190px minmax(0, 1fr); margin-top: 20px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.ebc-case-rail { position: relative; padding: 30px 25px; color: #fff; background: linear-gradient(160deg, var(--navy-950), #154b78); }
.ebc-case--agri .ebc-case-rail { background: linear-gradient(160deg, #0d453d, #176f61); }
.ebc-case--auto .ebc-case-rail { background: linear-gradient(160deg, #172d4a, #315b87); }
.ebc-case-no { display: block; margin-bottom: 6px; color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 850; letter-spacing: .13em; }
.ebc-case-type { display: inline-block; margin-bottom: 42px; padding: 5px 9px; color: #fff; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; font-size: .62rem; font-weight: 850; letter-spacing: .1em; }
.ebc-case-rail h4 { margin: 0 0 5px; color: #fff; font-size: 1.35rem; }
.ebc-case-rail p { margin: 0; color: rgba(255,255,255,.72); font-size: .82rem; line-height: 1.65; }

.ebc-case-body { padding: 30px 32px 31px; }
.ebc-case-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: start; }
.ebc-case-kicker { display: block; margin-bottom: 8px; color: var(--teal-600); font-size: .68rem; font-weight: 850; letter-spacing: .12em; }
.ebc-case-top h3 { margin: 0; color: var(--navy-900); font-size: 1.25rem; line-height: 1.55; }
.ebc-case-result { min-width: 150px; padding-left: 22px; border-left: 1px solid var(--line); text-align: right; }
.ebc-case-result span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .7rem; font-weight: 750; }
.ebc-case-result strong { color: var(--navy-900); font-size: 1.75rem; line-height: 1.2; white-space: nowrap; }
.ebc-case-result strong small { margin-left: 2px; font-size: .75rem; }
.ebc-case-result--text strong { font-size: 1.35rem; }

.ebc-case-services { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.ebc-case-services span { padding: 6px 10px; color: #285274; background: #f1f6fa; border: 1px solid #d9e6ee; border-radius: 999px; font-size: .72rem; font-weight: 720; }

.ebc-case-flow { display: grid; grid-template-columns: repeat(7, auto); gap: 8px; align-items: center; margin-top: 24px; padding: 17px 18px; background: #f8fafc; border: 1px solid #e4edf3; border-radius: 15px; }
.ebc-case-flow div { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: center; min-width: 0; }
.ebc-case-flow b { width: 27px; height: 27px; display: grid; place-items: center; color: #fff; background: var(--blue-700); border-radius: 50%; font-size: .64rem; }
.ebc-case--agri .ebc-case-flow b { background: #176f61; }
.ebc-case-flow span { color: var(--ink-2); font-size: .71rem; font-weight: 720; line-height: 1.45; }
.ebc-case-flow i { color: #a7bac9; font-style: normal; font-size: .9rem; }

.ebc-case-quote { position: relative; margin: 22px 0 0; padding: 21px 24px 20px 27px; background: #fff; border-left: 3px solid var(--teal-600); }
.ebc-case--agri .ebc-case-quote { border-left-color: #258a77; }
.ebc-case-quote::before { content: "“"; position: absolute; top: -10px; left: 8px; color: #d9e8ef; font-family: Georgia, serif; font-size: 4rem; line-height: 1; pointer-events: none; }
.ebc-case-quote p { position: relative; margin: 0; color: var(--ink-2); font-size: .9rem; line-height: 1.95; }
.ebc-case-quote footer { margin-top: 11px; color: var(--muted); font-size: .76rem; font-weight: 750; }
.ebc-cases-note { margin: 16px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.75; }

.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process li { position: relative; padding: 27px 19px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.process li::before { counter-increment: process; content: counter(process, decimal-leading-zero); display: block; margin-bottom: 15px; color: var(--teal-600); font-size: .78rem; font-weight: 850; letter-spacing: .1em; }
.process h3 { margin-bottom: 9px; color: var(--navy-900); font-size: 1.04rem; }
.process p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }

.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.price-table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; }
.price-table th, .price-table td { padding: 20px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: 0; }
.price-table th { width: 30%; color: var(--navy-900); background: #f1f6fa; font-weight: 750; }
.price-table td:nth-child(2) { width: 24%; color: var(--blue-700); font-weight: 800; }
.price-table td:last-child { color: var(--muted); font-size: .92rem; }

.security-box { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 28px; background: #eef8f5; border: 1px solid #ccebe2; border-radius: var(--radius-md); }
.security-box__icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--success); background: #fff; border-radius: 15px; box-shadow: var(--shadow-sm); }
.security-box h3 { margin-bottom: 7px; color: #125b4d; font-size: 1.15rem; }
.security-box p { margin: 0; color: #3f685f; font-size: .94rem; }

/* Company */
.company-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.company-visual { position: sticky; top: 118px; }
.company-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td { padding: 19px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.company-table th { width: 26%; color: var(--navy-900); background: var(--surface-2); font-weight: 760; }
.company-table td { color: var(--ink-2); }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { position: relative; display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 0 0 34px 28px; border-left: 2px solid #cbdde9; }
.timeline li::before { content: ""; position: absolute; top: 4px; left: -8px; width: 14px; height: 14px; background: var(--teal-600); border: 4px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--teal-600); }
.timeline li:last-child { padding-bottom: 0; }
.timeline time { color: var(--blue-700); font-weight: 800; }
.timeline p { margin: 0; color: var(--ink-2); }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq summary { position: relative; padding: 21px 58px 21px 24px; color: var(--navy-900); font-weight: 760; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 50%; right: 22px; width: 28px; height: 28px; display: grid; place-items: center; color: var(--blue-700); background: var(--surface-3); border-radius: 50%; transform: translateY(-50%); font-size: 1.15rem; }
.faq details[open] summary::after { content: "−"; }
.faq__answer { padding: 0 24px 24px; color: var(--muted); }
.faq__answer p:last-child { margin-bottom: 0; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; align-items: start; }
.contact-info { position: sticky; top: 118px; padding: 32px; color: #fff; background: var(--navy-900); border-radius: var(--radius-md); }
.contact-info h2 { color: #fff; font-size: 1.45rem; }
.contact-info p { color: #c5d5e2; }
.contact-info__item { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-info__item strong { display: block; color: #fff; }
.contact-info__item a { color: #82e1d2; font-size: 1.08rem; font-weight: 750; }
.contact-form { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 23px; }
.form-row label { display: block; margin-bottom: 8px; color: var(--navy-900); font-weight: 740; }
.required { margin-left: 7px; padding: 2px 7px; color: #fff; background: var(--error); border-radius: 999px; font-size: .7rem; vertical-align: 2px; }
.optional { margin-left: 7px; color: var(--muted); font-size: .74rem; }
.form-control { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid #b8c9d5; border-radius: 10px; transition: border-color .2s, box-shadow .2s; }
.form-control:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(45,110,190,.12); outline: 0; }
textarea.form-control { min-height: 190px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 11px; }
.form-check input { width: 19px; height: 19px; margin-top: 5px; accent-color: var(--blue-700); }
.form-errors { margin-bottom: 24px; padding: 18px 20px; color: #7e2330; background: #fff0f2; border: 1px solid #f1c2c8; border-radius: 12px; }
.form-errors ul { margin: 7px 0 0; }
.form-success { padding: 34px; color: #155a49; background: #eaf8f3; border: 1px solid #bfe8da; border-radius: var(--radius-md); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Recruit */
.job-card { padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.job-card__meta span { padding: 6px 11px; color: var(--blue-700); background: var(--surface-3); border-radius: 999px; font-size: .78rem; font-weight: 750; }
.job-table { width: 100%; border-collapse: collapse; }
.job-table th, .job-table td { padding: 17px 15px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.job-table th { width: 22%; color: var(--navy-900); background: var(--surface-2); }

/* Legal text */
.legal { max-width: 900px; }
.legal h2 { margin: 52px 0 18px; color: var(--navy-900); font-size: 1.55rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-2); }
.legal ol, .legal ul { padding-left: 1.4em; }

/* Footer */
.site-footer { color: #bdccda; background: #061624; }
.footer-main { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 62px; padding: 70px 0 54px; }
.footer-brand img { width: 190px; height: auto; margin-bottom: 22px; }
.footer-brand p { max-width: 430px; color: #9db0c1; font-size: .9rem; }
.footer-contact { margin-top: 20px; color: #d3deE8; font-size: .88rem; line-height: 1.8; }
.footer-title { margin-bottom: 18px; color: #fff; font-size: .92rem; letter-spacing: .05em; }
.footer-links { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.footer-links a { color: #aebfce; font-size: .88rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { padding: 19px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom__inner { display: flex; justify-content: space-between; gap: 20px; color: #8195a8; font-size: .78rem; }
.footer-disclaimer { max-width: 760px; }

/* Reveal */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --header-h: 72px; }
  .container { width: min(var(--container), calc(100% - 40px)); }
  .site-logo img { width: 158px; }
  .site-nav a { padding-inline: 8px; font-size: .84rem; }
  .hero-inner { grid-template-columns: .95fr 1.05fr; min-height: 620px; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(3, 1fr); }
  .flow-list li:nth-child(3)::after { display: none; }
  .process { grid-template-columns: repeat(3, 1fr); }
}

.pc-none { display: none; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; position: relative; }
  .site-nav {
    position: fixed; top: var(--header-h); right: 0; left: 0; max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    margin: 0; padding: 18px 20px 26px; background: rgba(7,26,46,.99); border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(-115%); opacity: 0; visibility: hidden; transition: transform .3s var(--ease), opacity .25s, visibility .25s;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav__list { display: grid; gap: 5px; }
  .site-nav a { width: 100%; min-height: 50px; padding: 12px 14px; font-size: .96rem; }
  .site-nav .nav-cta { margin: 8px 0 0; justify-content: center; }
  body.nav-open { overflow: hidden; }

  .section { padding: 88px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 10px; min-height: auto; padding: 72px 0 94px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 680px; margin: 6px auto 0; }
  .hero-visual img { width: 100%; margin: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .company-layout, .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .company-visual, .contact-info { position: static; }
  .brand-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-contact { align-items: flex-start; }
  .footer-main { grid-template-columns: 1.25fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .detail-grid { grid-template-columns: 1fr; }
  .ebc-intro { grid-template-columns: 1fr; }
  .ebc-service-grid { grid-template-columns: repeat(2, 1fr); }
  .ebc-brand-box { grid-template-columns: 1fr; }
  .ebc-benefit-grid { grid-template-columns: 1fr; }
  .ebc-expertise { grid-template-columns: 1fr; }
  .ebc-expertise__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .ebc-expertise__item:last-child { border-bottom: 0; }
  .ebc-cases-head { grid-template-columns: 1fr; gap: 15px; align-items: start; }
  .ebc-case { grid-template-columns: 150px minmax(0, 1fr); }
  .ebc-case-flow { grid-template-columns: 1fr 1fr; }
  .ebc-case-flow i { display: none; }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .container { width: min(100% - 32px, var(--container)); }
  .site-logo img { width: 142px; }
  .menu-toggle { width: 44px; height: 44px; }
  .section { padding: 72px 0; }
  .section--tight { padding: 58px 0; }
  .section-head { margin-bottom: 34px; }
  .eyebrow { margin-bottom: 12px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 56px 0 88px; }
  .hero-title { font-size: clamp(2.35rem, 9vw, 3.55rem); }
  .hero-lead { font-size: .99rem; }
  .button-row { display: grid; width: 100%; }
  .button { width: 100%; }
  .hero-tags { gap: 6px; }
  .hero-tags span { font-size: .75rem; }
  .hero-visual { margin-top: 12px; }
  .hero-wave { height: 44px; }
  .stats-wrap { margin-top: -30px; }
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 112px; padding: 22px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .card-grid, .support-grid { grid-template-columns: 1fr; }
  .card, .support-card, .brand-card, .detail-card, .job-card, .contact-form { padding: 26px 22px; }
  .split { gap: 32px; }
  .split .media-frame { order: -1; }
  .flow-list { grid-template-columns: 1fr; gap: 10px; }
  .flow-list li { min-height: auto; padding: 17px; text-align: left; display: grid; grid-template-columns: 42px 1fr; align-items: center; }
  .flow-list li::before { margin: 0; }
  .flow-list li:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -17px; transform: translateX(50%); }
  .flow-list li:nth-child(3)::after { display: block; }
  .amazon-section__actions { flex-direction: column; align-items: stretch; }
  .support-flow { padding: 26px 20px; }
  .brand-card h3 { font-size: 1.55rem; }
  .news-list li { grid-template-columns: 1fr; gap: 5px; padding: 19px 4px; }
  .page-hero { padding: 66px 0 62px; }
  .page-hero h1 { font-size: 2.45rem; }
  .process { grid-template-columns: 1fr; }
  .company-table, .company-table tbody, .company-table tr, .company-table th, .company-table td,
  .job-table, .job-table tbody, .job-table tr, .job-table th, .job-table td { display: block; width: 100%; }
  .company-table tr, .job-table tr { border-bottom: 1px solid var(--line); }
  .company-table th, .job-table th { padding-bottom: 8px; border: 0; }
  .company-table td, .job-table td { padding-top: 8px; border: 0; }
  .timeline li { grid-template-columns: 1fr; gap: 5px; padding-left: 23px; }
  .security-box { grid-template-columns: 1fr; }
  .ebc-service-grid { grid-template-columns: 1fr; }
  .ebc-service-card h3 { min-height: auto; }
  .ebc-proof-card, .ebc-brand-box, .ebc-registration-box { padding: 25px 22px; }
  .ebc-registration-box { grid-template-columns: 1fr; }
  .ebc-cases { margin-top: 44px; padding-top: 42px; }
  .ebc-case { grid-template-columns: 1fr; }
  .ebc-case-rail { padding: 21px 21px 20px; }
  .ebc-case-type { margin-bottom: 18px; }
  .ebc-case-body { padding: 23px 20px 24px; }
  .ebc-case-top { grid-template-columns: 1fr; gap: 16px; }
  .ebc-case-result { min-width: 0; padding: 13px 0 0; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
  .ebc-case-result strong { font-size: 1.55rem; }
  .ebc-case-flow { grid-template-columns: 1fr; padding: 14px; }
  .ebc-case-flow div { min-height: 40px; }
  .ebc-case-quote { padding: 18px 17px 17px 21px; }
  .contact-form { padding: 25px 19px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding: 54px 0 42px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom__inner { flex-direction: column; }
  .cta-inner { padding: 58px 0; }
  .sp-none { display: none; }
  .pc-none { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
